(props)
| 81 | }; |
| 82 | |
| 83 | constructor(props) { |
| 84 | super(props); |
| 85 | |
| 86 | this.state = { |
| 87 | afterOpen: false, |
| 88 | beforeClose: false |
| 89 | }; |
| 90 | |
| 91 | this.shouldClose = null; |
| 92 | this.moveFromContentToOverlay = null; |
| 93 | } |
| 94 | |
| 95 | componentDidMount() { |
| 96 | if (this.props.isOpen) { |
nothing calls this directly
no outgoing calls
no test coverage detected