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

Erro no WMS

            {this.state.error && this.state.error.toString()}
          
            {this.state.errorInfo && this.state.errorInfo.componentStack}
          
); } return this.props.children; } } createRoot(document.getElementById('root')).render( , )