Spaces:
Build error
Build error
Upload pages/_app.js with huggingface_hub
Browse files- 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
|