This commit is contained in:
2022-03-29 15:42:13 +08:00
commit 19668f58a2
15 changed files with 6783 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