2021-12-14 23:45:00 +01:00
|
|
|
import type { AppProps } from "next/app";
|
|
|
|
import "../styles/globals.css";
|
2021-11-30 23:48:54 +01:00
|
|
|
|
|
|
|
function MyApp({ Component, pageProps }: AppProps) {
|
2021-12-14 23:45:00 +01:00
|
|
|
return <Component {...pageProps} />;
|
2021-11-30 23:48:54 +01:00
|
|
|
}
|
|
|
|
|
2021-12-14 23:45:00 +01:00
|
|
|
export default MyApp;
|