7 lines
146 B
TypeScript
7 lines
146 B
TypeScript
|
// pages/_app.js
|
||
|
import '../styles/global.css'
|
||
|
|
||
|
export default function MyApp({ Component, pageProps }) {
|
||
|
return <Component {...pageProps} />
|
||
|
}
|