shimanta420's picture
Upload pages/_app.js with huggingface_hub
2cdc794 verified
raw
history blame contribute delete
261 Bytes
import { ToastContainer } from 'react-hot-toast'
import '../styles/globals.css'
function MyApp({ Component, pageProps }) {
return (
<>
<Component {...pageProps} />
<ToastContainer position="bottom-right" />
</>
)
}
export default MyApp