2025-03-19 02:09:30 -06:00
|
|
|
import { StrictMode } from "react";
|
|
|
|
|
import { createRoot } from "react-dom/client";
|
|
|
|
|
import "./index.css";
|
|
|
|
|
import App from "./App.jsx";
|
2025-02-19 12:33:38 -07:00
|
|
|
|
2025-03-19 02:09:30 -06:00
|
|
|
createRoot(document.getElementById("root")).render(
|
2025-02-19 12:33:38 -07:00
|
|
|
<StrictMode>
|
|
|
|
|
<App />
|
2025-03-19 02:09:30 -06:00
|
|
|
</StrictMode>
|
|
|
|
|
);
|