long4bttdh's picture
code multi file với nextjs
b945556 verified
raw
history blame contribute delete
223 Bytes
import '../style.css'
export default function MyApp({ Component, pageProps }) {
return (
<>
<custom-navbar></custom-navbar>
<Component {...pageProps} />
<custom-footer></custom-footer>
</>
)
}