feat: bootstrap the basic app structure

This commit is contained in:
sct
2020-08-16 14:39:37 +00:00
parent 2519ac86f7
commit 89a6017c7f
16 changed files with 3511 additions and 297 deletions

8
pages/_app.tsx Normal file
View File

@@ -0,0 +1,8 @@
import React from 'react';
import '../styles/globals.css';
function MyApp({ Component, pageProps }) {
return <Component {...pageProps} />;
}
export default MyApp;