2026-03-22 19:07:07 +00:00
|
|
|
import * as React from "react";
|
|
|
|
|
import ReactDOM from "react-dom/client";
|
|
|
|
|
import App from "./App";
|
2026-05-14 19:04:29 +00:00
|
|
|
import { ErrorBoundary } from "./components/ErrorBoundary";
|
2026-03-22 19:07:07 +00:00
|
|
|
|
|
|
|
|
ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
|
|
|
|
|
<React.StrictMode>
|
2026-05-14 19:04:29 +00:00
|
|
|
<ErrorBoundary>
|
|
|
|
|
<App />
|
|
|
|
|
</ErrorBoundary>
|
2026-03-22 19:07:07 +00:00
|
|
|
</React.StrictMode>,
|
|
|
|
|
);
|