Files
sundynix-radio-admin/src/main.tsx
T
2026-02-28 17:35:31 +08:00

8 lines
161 B
TypeScript

import { createRoot } from 'react-dom/client'
import './index.css'
import App from './App.tsx'
createRoot(document.getElementById('root')!).render(
<App />
)