+
+
This page hit an error
+
+ Something went wrong while rendering this page. You can go back and try again, or reload.
+
+
+
+ {error.message}
+
+
+
+
+
+
+ );
+ }
+}
+
+export function RouteErrorBoundary({ children }: { children: ReactNode }) {
+ const location = useLocation();
+ const navigate = useNavigate();
+ const resetKey = `${location.pathname}${location.search}`;
+
+ return (
+