yuvrajsingh6
feat: RAG system with OCR for Hugging Face Spaces
4d592a4
raw
history blame contribute delete
466 Bytes
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>,
)