Spaces:
Build error
Build error
Upload pages/_app.js with huggingface_hub
Browse files- pages/_app.js +13 -0
pages/_app.js
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import { ToastContainer } from 'react-hot-toast'
|
| 2 |
+
import '../styles/globals.css'
|
| 3 |
+
|
| 4 |
+
function MyApp({ Component, pageProps }) {
|
| 5 |
+
return (
|
| 6 |
+
<>
|
| 7 |
+
<Component {...pageProps} />
|
| 8 |
+
<ToastContainer position="bottom-right" />
|
| 9 |
+
</>
|
| 10 |
+
)
|
| 11 |
+
}
|
| 12 |
+
|
| 13 |
+
export default MyApp
|