Files
negareh-admin/src/main.tsx
T
2025-10-20 12:28:48 +03:30

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 />
)