first commit

This commit is contained in:
kicap1992
2022-04-15 13:59:42 +08:00
commit d82096d5e5
18 changed files with 12056 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