10 lines
197 B
TypeScript
10 lines
197 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 />);
|
|
|