前端重构实现

This commit is contained in:
2025-12-22 16:38:06 +08:00
parent cd6d995d5a
commit 26574e3db7
54 changed files with 8976 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
import { StrictMode } from 'react';
import { createRoot } from 'react-dom/client';
import './index.css';
import App from './App.jsx';
/**
* 应用入口
* 渲染 React 应用到 DOM
*/
createRoot(document.getElementById('root')).render(
<StrictMode>
<App />
</StrictMode>
);