Bootstrap the admin project

This commit is contained in:
Gabe Kangas
2020-09-30 15:12:10 -07:00
parent 5b58ca8345
commit 0f74e1988f
10 changed files with 769 additions and 78 deletions

10
web/pages/_app.tsx Normal file
View File

@@ -0,0 +1,10 @@
import 'antd/dist/antd.css';
import '../styles/globals.css'
import { AppProps } from 'next/app'
function App({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />
}
export default App