import React from "react";
import ReactDOM from "react-dom/client";
import App from "./App";
import "./index.css";

// This is the very first file that runs in the browser. It finds the
// <div id="root"> in index.html and tells React "put our whole app
// inside this box."
ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
  <React.StrictMode>
    <App />
  </React.StrictMode>
);
