1b11b3f1c5a212e016c389ac6d17db7d3b5e35ab
Gitcub / pages / _app.js
// Copyright © 2023 Dean Lee

import '../style.css';
import 'highlight.js/styles/github.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
11
12