File size: 204 Bytes
82b1b1d
8214506
e9e1da2
8214506
 
 
 
 
82b1b1d
1
2
3
4
5
6
7
8
9
10
import React from "react"
import { createRoot } from "react-dom/client"
import App from "./components/App"

const app = document.getElementById("app")

const root = createRoot(app!)

root.render(<App />)