example/nextjs/pages/_app.js (3 lines of code) (raw):

import '../styles/globals.css' function MyApp({ Component, pageProps }) { return <Component {...pageProps} /> } export default MyApp