feat: initialize frontend project with Vite, React, and Biome configuration

This commit is contained in:
Your Name
2026-04-09 13:23:45 +05:30
parent 4bdb1ee80d
commit 6bf186806b
21 changed files with 1248 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './index.css'
import App from './App.tsx'
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
</StrictMode>,
)