aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.tsx
blob: 9a110463ca28ad3c36fbcb88450b4dab543ebc83 (plain)
1
2
3
4
5
6
7
8
9
10
11
import React from "react"
import ReactDOM from "react-dom"
import "./index.css"
import App from "./App"

ReactDOM.render(
  <React.StrictMode>
    <App />
  </React.StrictMode>,
  document.getElementById("root"),
)