File size: 150 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 |
export default function MyApp({ Component, pageProps }) {
return (
<>
<p>custom _app</p>
<Component {...pageProps} />
</>
)
}
|
1e92f2d |
1 2 3 4 5 6 7 8 9 |
export default function MyApp({ Component, pageProps }) {
return (
<>
<p>custom _app</p>
<Component {...pageProps} />
</>
)
}
|