initial commit

This commit is contained in:
lucas
2022-05-03 02:53:19 -07:00
commit 455ab524fa
23 changed files with 7672 additions and 0 deletions

8
pages/_app.js Normal file
View File

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