00Boobs00 commited on
Commit
c445bf8
·
verified ·
1 Parent(s): fb83051

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;