nextjs-with-docker/pages/_app.js

8 lines
140 B
JavaScript
Raw Normal View History

2024-08-20 15:28:28 +00:00
import "../styles/globals.css";
function MyApp({ Component, pageProps }) {
return <Component {...pageProps} />;
}
export default MyApp;