Spaces:
Build error
Build error
Upload pages/_app.js with huggingface_hub
Browse files- pages/_app.js +8 -0
pages/_app.js
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import '../styles/globals.css';
|
| 2 |
+
import 'tailwindcss';
|
| 3 |
+
|
| 4 |
+
function MyApp({ Component, pageProps }) {
|
| 5 |
+
return <Component {...pageProps} />;
|
| 6 |
+
}
|
| 7 |
+
|
| 8 |
+
export default MyApp;
|