2024-02-13 14:47:36 +01:00
|
|
|
import React from "react";
|
|
|
|
import ReactDOM from "react-dom/client";
|
|
|
|
import App from "./App.tsx";
|
|
|
|
import "./index.css";
|
2024-02-12 12:47:46 +01:00
|
|
|
|
2024-02-13 14:47:36 +01:00
|
|
|
const root = document.getElementById("root") ?? document.createElement("div");
|
|
|
|
|
|
|
|
ReactDOM.createRoot(root).render(
|
2024-02-12 12:47:46 +01:00
|
|
|
<React.StrictMode>
|
|
|
|
<App />
|
|
|
|
</React.StrictMode>,
|
2024-02-13 14:47:36 +01:00
|
|
|
);
|