Dariky's picture
Upload pages/_app.js with huggingface_hub
7586731 verified
raw
history blame contribute delete
139 Bytes
import '../styles/globals.css';
function MyApp({ Component, pageProps }) {
return <Component {...pageProps} />;
}
export default MyApp;