import { Component, type ReactNode, type ErrorInfo } from "react"; import Box from "@mui/material/Box"; import Typography from "@mui/material/Typography"; import { Button } from "../ui"; interface Props { children: ReactNode; } interface State { hasError: boolean; error: Error | null; } export default class ErrorBoundary extends Component { state: State = { hasError: false, error: null }; static getDerivedStateFromError(error: Error): State { return { hasError: true, error }; } componentDidCatch(error: Error, info: ErrorInfo) { console.error("ErrorBoundary caught:", error, info); } render() { if (this.state.hasError) { return ( Něco se pokazilo {this.state.error?.message} ); } return this.props.children; } }