2025-05-02 21:43:51 +00:00
|
|
|
import { StrictMode } from "react";
|
|
|
|
|
import { createRoot } from "react-dom/client";
|
|
|
|
|
import App from "./App.tsx";
|
|
|
|
|
|
2025-05-05 17:11:44 +00:00
|
|
|
const rootElement = document.getElementById("factuges");
|
|
|
|
|
if (rootElement) {
|
|
|
|
|
createRoot(rootElement).render(
|
|
|
|
|
<StrictMode>
|
|
|
|
|
<App />
|
|
|
|
|
</StrictMode>
|
|
|
|
|
);
|
|
|
|
|
} else {
|
|
|
|
|
console.error("Root element with id 'factuges' not found.");
|
|
|
|
|
}
|