pradipp's picture
Upload pages/_app.js with huggingface_hub
91c99ba verified
raw
history blame contribute delete
131 Bytes
import '@/styles/globals.css'
function App({ Component, pageProps }) {
return <Component {...pageProps} />
}
export default App