saq1b commited on
Commit
79e3cf6
·
verified ·
1 Parent(s): 81d539b

Create pages/_app.tsx

Browse files
Files changed (1) hide show
  1. pages/_app.tsx +8 -0
pages/_app.tsx ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import type { AppProps } from 'next/app'
2
+ import '../styles/globals.css'
3
+
4
+ function MyApp({ Component, pageProps }: AppProps) {
5
+ return <Component {...pageProps} />
6
+ }
7
+
8
+ export default MyApp