diff --git a/docs/core_docs/src/theme/DocItem/Content/index.js b/docs/core_docs/src/theme/DocItem/Content/index.js deleted file mode 100644 index 3e36dee744b5..000000000000 --- a/docs/core_docs/src/theme/DocItem/Content/index.js +++ /dev/null @@ -1,13 +0,0 @@ -import React from "react"; -import Content from "@theme-original/DocItem/Content"; -import Feedback from "../../Feedback"; - -export default function ContentWrapper(props) { - return ( - <> - {/* eslint-disable react/jsx-props-no-spreading */} - - - - ); -} diff --git a/docs/core_docs/src/theme/DocItem/Paginator/index.js b/docs/core_docs/src/theme/DocItem/Paginator/index.js new file mode 100644 index 000000000000..4d4d1b188538 --- /dev/null +++ b/docs/core_docs/src/theme/DocItem/Paginator/index.js @@ -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 ( + <> + + + + ); +}