akhaliq's picture
akhaliq HF Staff
Upload pages/_app.js with huggingface_hub
cd2d98d verified
raw
history blame contribute delete
276 Bytes
import '../styles/globals.css'
import { Inter } from 'next/font/google'
const inter = Inter({ subsets: ['latin'] })
export default function App({ Component, pageProps }) {
return (
<main className={inter.className}>
<Component {...pageProps} />
</main>
)
}