Skip to content

Commit

Permalink
Merge pull request #5516 from langchain-ai/erick/docs-move-feedback-i…
Browse files Browse the repository at this point in the history
…nto-paginator-from-content

docs: move feedback into paginator from content
  • Loading branch information
efriis authored May 22, 2024
2 parents 12612cb + 94df1ab commit 96324b5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 13 deletions.
13 changes: 0 additions & 13 deletions docs/core_docs/src/theme/DocItem/Content/index.js

This file was deleted.

12 changes: 12 additions & 0 deletions docs/core_docs/src/theme/DocItem/Paginator/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import React from "react";
import Paginator from "@theme-original/DocItem/Paginator";
import Feedback from "../../Feedback";

export default function PaginatorWrapper(props) {
return (
<>
<Feedback />
<Paginator {...props} />
</>
);
}

0 comments on commit 96324b5

Please sign in to comment.