(props, state)
| 65 | } |
| 66 | |
| 67 | static getDerivedStateFromProps(props, state) { |
| 68 | if (props.isOpen && !state.isOpen) { |
| 69 | return { isOpen: props.isOpen }; |
| 70 | } |
| 71 | return null; |
| 72 | } |
| 73 | |
| 74 | componentDidUpdate() { |
| 75 | if ( |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…