import { StrictMode, Component } from 'react' import { createRoot } from 'react-dom/client' import './index.css' import App from './App.jsx' class ErrorBoundary extends Component { constructor(props) { super(props) this.state = { hasError: false, error: null } } static getDerivedStateFromError(error) { return { hasError: true, error } } render() { if (this.state.hasError) { return (

React Crash:

{this.state.error.stack}
) } return this.props.children } } createRoot(document.getElementById('root')).render( , )