(error: Error)
| 101 | export default class App extends PureComponent<Props, State> { |
| 102 | static displayName = 'InternalApp'; |
| 103 | static getDerivedStateFromError(error: Error) { |
| 104 | return { |
| 105 | error |
| 106 | }; |
| 107 | } |
| 108 | override state = { |
| 109 | error: undefined |
| 110 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected