(props)
| 23 | |
| 24 | class ModalContainer extends Component { |
| 25 | constructor (props) { |
| 26 | super(props); |
| 27 | this.state = { |
| 28 | increase: false, |
| 29 | modals |
| 30 | }; |
| 31 | this.close = this.close.bind(this); |
| 32 | this.clickaway = this.clickaway.bind(this); |
| 33 | this.elements = {}; |
| 34 | } |
| 35 | |
| 36 | componentDidMount () { |
| 37 | PubSub.subscribe(ADD_MODAL, this.addModal.bind(this)); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…