(props, state)
| 112 | } |
| 113 | |
| 114 | static getDerivedStateFromProps(props, state) { |
| 115 | if (props.isOpen && !state.isOpen) { |
| 116 | return { isOpen: props.isOpen }; |
| 117 | } |
| 118 | return null; |
| 119 | } |
| 120 | |
| 121 | handleDocumentClick(e) { |
| 122 | const triggers = this.props.trigger.split(' '); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…