Files
splendor-clone/src/main.tsx
2022-08-16 11:31:22 -05:00

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