Skip to content

Commit

Permalink
Extend DocItemFooter instead of EditThisPage
Browse files Browse the repository at this point in the history
  • Loading branch information
ch1bo committed Aug 25, 2022
1 parent 157b1dc commit 4deb453
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import React from 'react';
import EditThisPage from '@theme-original/EditThisPage';
import DocItemFooter from '@theme-original/DocItemFooter';
import DocumentMetadata from '@site/src/components/DocumentMetadata';

export default function EditThisPageWrapper(props) {
export default function DocItemFooterWrapper(props) {
return (
<>
<EditThisPage {...props} />
<DocumentMetadata />
<DocItemFooter {...props} />
</>
);
}

0 comments on commit 4deb453

Please sign in to comment.