()
| 13 | |
| 14 | class UnlockModal extends Component { |
| 15 | render() { |
| 16 | const { closeModal, modalOpen } = this.props; |
| 17 | |
| 18 | const fullScreen = window.innerWidth < 576; |
| 19 | |
| 20 | return ( |
| 21 | <Dialog open={ modalOpen } onClose={ closeModal } fullWidth={ true } maxWidth={ 'sm' } TransitionComponent={ Transition } fullScreen={ fullScreen }> |
| 22 | <DialogContent> |
| 23 | <Unlock closeModal={ closeModal } /> |
| 24 | </DialogContent> |
nothing calls this directly
no outgoing calls
no test coverage detected