fix: rename to .jsx

This commit is contained in:
karishmas6
2024-04-12 14:49:15 +05:30
parent 0b49dd6acb
commit 6121963998
2 changed files with 1 additions and 23 deletions

10
ui/src/main.jsx Normal file
View File

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