huskies: merge 1059

This commit is contained in:
dave
2026-05-14 19:04:29 +00:00
parent 7d7e02f7b0
commit 6d53382f8c
6 changed files with 121 additions and 4 deletions
+4 -1
View File
@@ -1,9 +1,12 @@
import * as React from "react";
import ReactDOM from "react-dom/client";
import App from "./App";
import { ErrorBoundary } from "./components/ErrorBoundary";
ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
<React.StrictMode>
<App />
<ErrorBoundary>
<App />
</ErrorBoundary>
</React.StrictMode>,
);