tommytracx's picture
Upload pages/_app.js with huggingface_hub
08c9e46 verified
raw
history blame contribute delete
219 Bytes
import '../styles/globals.css';
function MyApp({ Component, pageProps }) {
return (
<div className="min-h-screen bg-gray-100 py-8 px-4">
<Component {...pageProps} />
</div>
);
}
export default MyApp;