InsuCompass / src /main.tsx
nagur-shareef-shaik's picture
Add Application code
f884d0d
raw
history blame contribute delete
231 Bytes
import React from 'react'
import ReactDOM from 'react-dom/client'
import App from './App'
import './index.css'
ReactDOM.createRoot(document.getElementById('root')!).render(
<React.StrictMode>
<App />
</React.StrictMode>,
)