9 lines
196 B
TypeScript
9 lines
196 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 />);
|