7 lines
172 B
TypeScript
7 lines
172 B
TypeScript
import { createRoot } from 'react-dom/client';
|
|
import { App } from './pages/App.tsx';
|
|
|
|
import './index.css';
|
|
|
|
createRoot(document.getElementById('root')!).render(<App />);
|