2019-01-22 00:41:13 -08:00
|
|
|
import React from "react";
|
|
|
|
import ReactDOM from "react-dom";
|
2021-09-12 02:22:50 -07:00
|
|
|
import App from "./src/App.tsx";
|
2019-01-22 00:41:13 -08:00
|
|
|
|
|
|
|
const root = document.getElementById("root");
|
|
|
|
ReactDOM.render(<App />, root);
|
|
|
|
|