(ref)
| 180 | } |
| 181 | |
| 182 | getRef(ref) { |
| 183 | const { innerRef } = this.props; |
| 184 | if (innerRef) { |
| 185 | if (typeof innerRef === 'function') { |
| 186 | innerRef(ref); |
| 187 | } else if (typeof innerRef === 'object') { |
| 188 | innerRef.current = ref; |
| 189 | } |
| 190 | } |
| 191 | this._popover = ref; |
| 192 | } |
| 193 | |
| 194 | getDelay(key) { |
| 195 | const { delay } = this.props; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…