install react vite

This commit is contained in:
sindhu
2023-11-06 09:43:35 +07:00
parent 6bb982344f
commit 1afbcd0bda
16 changed files with 3260 additions and 0 deletions

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>,
)