mirror of
https://github.com/r-freeman/nextjs-with-docker.git
synced 2024-11-13 11:05: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;
|