ui v0.0.1-beta

This commit is contained in:
go0p
2025-03-04 16:07:14 +08:00
parent 86dd6cd40c
commit cf10abc3f8
4 changed files with 62 additions and 9 deletions
+2 -6
View File
@@ -9,9 +9,5 @@ if (!container) throw new Error('Failed to find the root element');
// 创建根
const root = createRoot(container);
// 渲染应用
root.render(
<React.StrictMode>
<App />
</React.StrictMode>
);
// 渲染应用,移除 StrictMode
root.render(<App />);