(key)
| 28 | }, |
| 29 | |
| 30 | removeNotice(key){ |
| 31 | this.setState((state) => { |
| 32 | return { |
| 33 | notices: state.notices.filter(item => item.key !== key) |
| 34 | } |
| 35 | }) |
| 36 | }, |
| 37 | |
| 38 | render() { |
| 39 | const {notices} = this.state |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…