mohammadSaber26 commited on
Commit
8517503
·
verified ·
1 Parent(s): b3c6231

Upload pages/_app.js with huggingface_hub

Browse files
Files changed (1) hide show
  1. pages/_app.js +13 -0
pages/_app.js ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import '../styles/globals.css';
2
+ import { useEffect } from 'react';
3
+
4
+ function MyApp({ Component, pageProps }) {
5
+ useEffect(() =>.js
6
+ return (
7
+ <div className="min-h-screen">
8
+ <Component {...pageProps} />
9
+ </div>
10
+ );
11
+ }
12
+
13
+ export default MyApp;