mirror of
https://github.com/Brooooooklyn/Image.git
synced 2025-12-08 18:36:03 +00:00
11 lines
292 B
JavaScript
11 lines
292 B
JavaScript
import 'nextra-theme-docs/style.css'
|
|
|
|
import '../style.css'
|
|
|
|
export default function Nextra({ Component, pageProps }) {
|
|
// Use the layout defined at the page level, if available
|
|
const getLayout = Component.getLayout || ((page) => page)
|
|
|
|
return getLayout(<Component {...pageProps} />)
|
|
}
|