()
| 29 | } |
| 30 | |
| 31 | get styles () { |
| 32 | const { styles } = this.props |
| 33 | const obj = {} |
| 34 | Object.keys(styles2).forEach((key) => { |
| 35 | const arr = [styles2[key]] |
| 36 | if (styles[key]) { |
| 37 | arr.push(styles[key]) |
| 38 | } |
| 39 | obj[key] = arr |
| 40 | }) |
| 41 | return obj |
| 42 | } |
| 43 | |
| 44 | show = () => { |
| 45 | this.setState({visible: true}, () => { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…