This commit is contained in:
2025-06-04 00:45:13 +08:00
commit 8aca49df69
12 changed files with 2204 additions and 0 deletions

4
src/main.tsx Normal file
View File

@@ -0,0 +1,4 @@
import { createRoot } from 'react-dom/client';
import { App } from './App.tsx';
createRoot(document.getElementById('root')!).render(<App />);