mohammadSaber26's picture
Upload pages/_app.js with huggingface_hub
8517503 verified
raw
history blame contribute delete
253 Bytes
import '../styles/globals.css';
import { useEffect } from 'react';
function MyApp({ Component, pageProps }) {
useEffect(() =>.js
return (
<div className="min-h-screen">
<Component {...pageProps} />
</div>
);
}
export default MyApp;