This commit is contained in:
Tommy Parnell
2021-06-10 21:12:02 -04:00
commit 812138b3e3
13 changed files with 2195 additions and 0 deletions

7
pages/_app.js Normal file
View File

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