Début du projet, création du comportement de base + structure du site / du projet

This commit is contained in:
Sonny
2022-01-07 01:58:57 +01:00
parent 716f9758bb
commit 41f7eaa553
19 changed files with 11739 additions and 73 deletions

7
pages/_app.js Normal file
View File

@@ -0,0 +1,7 @@
import '../styles/globals.scss';
function MyApp({ Component, pageProps }) {
return <Component {...pageProps} />;
}
export default MyApp;