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