2025-05-01 11:52:39 +00:00
|
|
|
import { StrictMode } from "react";
|
2025-04-27 20:47:47 +00:00
|
|
|
import { createRoot } from "react-dom/client";
|
2025-05-01 11:52:39 +00:00
|
|
|
import App from "./App.tsx";
|
2025-04-27 20:47:47 +00:00
|
|
|
|
2025-05-01 11:52:39 +00:00
|
|
|
createRoot(document.getElementById("factuges")!).render(
|
|
|
|
|
<StrictMode>
|
|
|
|
|
<App />
|
|
|
|
|
</StrictMode>
|
2025-04-27 20:47:47 +00:00
|
|
|
);
|