This commit is contained in:
Daniel Kluge
2021-12-14 23:45:00 +01:00
parent d6bd11f65e
commit 92e32e0674
5 changed files with 19 additions and 19 deletions
+4 -4
View File
@@ -1,8 +1,8 @@
import type { AppProps } from 'next/app'
import "../styles/globals.css"
import type { AppProps } from "next/app";
import "../styles/globals.css";
function MyApp({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />
return <Component {...pageProps} />;
}
export default MyApp
export default MyApp;