docs: move feedback into paginator from content (#22041)

we only index what's in the `<article>` tags for search. We should not
have the feedback in the article.
pull/22019/head
Erick Friis 4 months ago committed by GitHub
parent 709664a079
commit ed5914ff61
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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 */}
<Content {...props} />
<Feedback />
</>
);
}

@ -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} />
</>
);
}
Loading…
Cancel
Save