Add pages/_app.js

This commit is contained in:
2026-04-26 21:38:17 +02:00
parent f31158835e
commit e891cbbbf6
+9
View File
@@ -0,0 +1,9 @@
import '../styles/globals.css';
export default function MyApp({ Component, pageProps }) {
return (
<div suppressHydrationWarning>
<Component {...pageProps} />
</div>
);
}