chore: ui setup

This commit is contained in:
karishmas6
2024-03-03 16:44:16 +05:30
parent d8604a9b9b
commit 6cbedfcc30
16 changed files with 5593 additions and 0 deletions

10
ui/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.tsx'
import './index.css'
ReactDOM.createRoot(document.getElementById('root')!).render(
<React.StrictMode>
<App />
</React.StrictMode>,
)