Spaces:
Running
Running
| import React from 'react'; | |
| import ReactDOM from 'react-dom'; | |
| import App from 'next/app'; | |
| import '../styles/globals.css'; | |
| function MyApp({ Component }) { | |
| return ( | |
| <div> | |
| <Component {...pageProps} /> | |
| </div> | |
| ); | |
| } | |
| export default MyApp; |