feat: react front init

This commit is contained in:
swve 2022-09-21 20:55:51 +02:00
parent 130123b055
commit fcd281d1d6
18 changed files with 6594 additions and 0 deletions

8
front/pages/_app.tsx Normal file
View file

@ -0,0 +1,8 @@
import '../styles/globals.css'
import type { AppProps } from 'next/app'
function MyApp({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />
}
export default MyApp