mirror of
https://github.com/r-freeman/nextjs-with-docker.git
synced 2024-11-14 11:15:40 +00:00
8 lines
140 B
JavaScript
8 lines
140 B
JavaScript
|
import "../styles/globals.css";
|
||
|
|
||
|
function MyApp({ Component, pageProps }) {
|
||
|
return <Component {...pageProps} />;
|
||
|
}
|
||
|
|
||
|
export default MyApp;
|