2023-03-31 03:29:53 +02:00
|
|
|
import type { AppProps } from "next/app";
|
2023-04-03 05:36:00 +02:00
|
|
|
import "./globals.scss";
|
2023-03-31 03:29:53 +02:00
|
|
|
|
|
|
|
export default function App({ Component, pageProps }: AppProps) {
|
|
|
|
return <Component {...pageProps} />;
|
|
|
|
}
|