feat(frontend): Scaffold React project with Vite, Tailwind CSS v4, and shadcn/ui

This commit is contained in:
Yunxiao Xu
2026-02-11 19:20:08 -08:00
parent 0dfdef738d
commit 5d0130731d
19 changed files with 9672 additions and 0 deletions

10
frontend/src/main.tsx Normal file
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>,
)