2021-12-22 18:40:46 +01:00
|
|
|
import '../styles/css/style.css';
|
|
|
|
import type { AppProps } from 'next/app';
|
|
|
|
|
|
|
|
export default function MyApp({ Component, pageProps }: AppProps) {
|
2022-01-02 18:54:19 +01:00
|
|
|
return <Component {...pageProps} />;
|
2021-12-22 18:40:46 +01:00
|
|
|
}
|