akhaliq HF Staff commited on
Commit
4adc4d0
·
verified ·
1 Parent(s): 5bd0720

Upload pages/_app.js with huggingface_hub

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