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