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