1
0
Files
official-website/official/src/apps/index/main.tsx
2025-07-26 15:31:43 +08:00

10 lines
197 B
TypeScript

import { createRoot } from 'react-dom/client';
import { App } from './App';
import './index.css';
const root = createRoot(document.getElementById('root') as HTMLElement);
root.render(<App />);