Spaces:
Sleeping
Sleeping
| import React from 'react' | |
| import ReactDOM from 'react-dom/client' | |
| import App from './App' | |
| import './index.css' | |
| import { Toaster } from 'react-hot-toast' | |
| ReactDOM.createRoot(document.getElementById('root')!).render( | |
| <React.StrictMode> | |
| <App /> | |
| <Toaster | |
| position="top-right" | |
| toastOptions={{ | |
| duration: 4000, | |
| style: { | |
| background: '#1e293b', | |
| color: '#f1f5f9', | |
| }, | |
| }} | |
| /> | |
| </React.StrictMode>, | |
| ) | |