(i)
| 31 | }; |
| 32 | |
| 33 | getExpandedIcon(i) { |
| 34 | const { theme, iconStyle } = this.props; |
| 35 | |
| 36 | if (this.state.expanded[i]) { |
| 37 | return <ExpandedIcon {...{ theme, iconStyle }} />; |
| 38 | } |
| 39 | |
| 40 | return <CollapsedIcon {...{ theme, iconStyle }} />; |
| 41 | } |
| 42 | |
| 43 | render() { |
| 44 | const { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…