AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 html-video
main.tsx
根目录
/
packages
/
studio-next
/
src
/
main.tsx
1
import { StrictMode } from 'react';
2
import { createRoot } from 'react-dom/client';
3
import { App } from './App';
4
5
createRoot(document.getElementById('root')!).render(
6
<StrictMode>
7
<App />
8
</StrictMode>,
9
);
10
10 lines
Plain Text