angrybeanie-front-end/pages/_app.js
2020-12-06 21:49:37 +11:00

21 lines
No EOL
722 B
JavaScript

// import App from 'next/app'
import 'bootstrap/dist/css/bootstrap.min.css';
import "../components/css/styles.css"
function MyApp({ Component, pageProps }) {
return <Component {...pageProps} />
}
// Only uncomment this method if you have blocking data requirements for
// every single page in your application. This disables the ability to
// perform automatic static optimization, causing every page in your app to
// be server-side rendered.
//
// MyApp.getInitialProps = async (appContext) => {
// // calls page's `getInitialProps` and fills `appProps.pageProps`
// const appProps = await App.getInitialProps(appContext);
//
// return { ...appProps }
// }
export default MyApp