initialize the app

This commit is contained in:
ajaythapliyal
2023-02-07 23:27:21 +05:30
parent f6c97b52b1
commit 5d281ad01b
16 changed files with 1637 additions and 1 deletions

10
frontend/src/main.tsx Normal file
View File

@@ -0,0 +1,10 @@
import React from 'react'
import ReactDOM from 'react-dom/client'
import App from './App'
import './index.css'
ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render(
<React.StrictMode>
<App />
</React.StrictMode>,
)