Add project source with .gitignore, remove node_modules and dist from tracking

This commit is contained in:
周徐浩
2026-07-17 03:23:57 +08:00
parent 4f6c48e418
commit 0237da7c66
20 changed files with 3461 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import App from './App'
import './styles.css'
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
</StrictMode>,
)