2021-04-06 23:45:08 +02:00
|
|
|
import '../styles/globals.scss';
|
2021-03-27 17:25:50 +01:00
|
|
|
|
|
|
|
function MyApp({ Component, pageProps }) {
|
2021-04-06 23:45:08 +02:00
|
|
|
return <Component {...pageProps} />;
|
2021-03-27 17:25:50 +01:00
|
|
|
}
|
|
|
|
|
2021-04-06 23:45:08 +02:00
|
|
|
export default MyApp;
|