mirror of
https://github.com/vercel/next-learn.git
synced 2026-06-11 09:51:47 +00:00
6 lines
129 B
JavaScript
6 lines
129 B
JavaScript
import '../styles/global.css';
|
|
|
|
export default function App({ Component, pageProps }) {
|
|
return <Component {...pageProps} />;
|
|
}
|