Initial commit: Copilot Toolbox template project

This commit is contained in:
Evan
2026-01-09 10:49:51 +08:00
commit 0b4b053566
31 changed files with 12085 additions and 0 deletions

12
src/main.tsx Normal file
View File

@@ -0,0 +1,12 @@
import './utils/polyfills'
import { createRoot } from 'react-dom/client'
import { ConfigProvider } from 'antd'
import zhCN from 'antd/es/locale/zh_CN'
import App from './App'
import './index.css'
createRoot(document.getElementById('root')!).render(
<ConfigProvider locale={zhCN}>
<App />
</ConfigProvider>
)