1deb57b4aee24804fea8c3a4972ef25f6910c715
Gitcub / pages / _app.js
import '../style.css';
import 'highlight.js/styles/default.css';

// This default export is required in a new `pages/_app.js` file.
const MyApp = ({ Component, pageProps }) => {
  return <Component {...pageProps} />;
}

export default MyApp;
1
2
3
4
5
6
7
8
9
10