()
| 12 | function ErrorBoundary({ children }) { |
| 13 | const [error, setError] = useState(null); |
| 14 | const handleError = () => { |
| 15 | setError('Something went wrong!'); |
| 16 | }; |
| 17 | |
| 18 | return ( |
| 19 | <> |
nothing calls this directly
no outgoing calls
no test coverage detected