BadmintonTeam/src/main.tsx

7 lines
140 B
TypeScript
Raw Normal View History

2024-09-12 17:28:23 +08:00
import { createRoot } from 'react-dom/client'
import App from './App.tsx'
createRoot(document.getElementById('root')!).render(
<App />,
)