init the repository via npm create vite

This commit is contained in:
WanCW 2025-04-25 17:30:46 +08:00
commit a3f411a088
Signed by: wancw
GPG key ID: 1A22F8C8D1877952
12 changed files with 273 additions and 0 deletions

10
src/main.jsx 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.jsx'
createRoot(document.getElementById('root')).render(
<StrictMode>
<App />
</StrictMode>,
)