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