7 lines
165 B
TypeScript
7 lines
165 B
TypeScript
import { render } from 'react-dom'
|
|
import App from './App'
|
|
import './index.css'
|
|
|
|
const root = document.getElementById('root') as HTMLElement;
|
|
render(<App />, root);
|