(props)
| 80 | class Unlock extends Component { |
| 81 | |
| 82 | constructor(props) { |
| 83 | super() |
| 84 | |
| 85 | this.state = { |
| 86 | loading: false, |
| 87 | error: null |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | componentWillMount() { |
| 92 | stores.emitter.on(CONNECTION_CONNECTED, this.connectionConnected); |
nothing calls this directly
no outgoing calls
no test coverage detected