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 (
{this.state.error.stack}