github.com/Racer159/jackal@v0.32.7-0.20240401174413-0bd2339e4f2e/docs-website/src/theme/DocItem/index.js (about) 1 import React from "react"; 2 import DocItem from "@theme-original/DocItem"; 3 import Footer from "@theme-original/Footer"; 4 5 export default function DocItemWrapper(props) { 6 return ( 7 <> 8 <DocItem {...props} /> 9 {/* place footer at bottom of doc item */} 10 <Footer /> 11 </> 12 ); 13 }