()
| 68 | } |
| 69 | |
| 70 | timerTick() { |
| 71 | this.timer = setTimeout(() => { |
| 72 | this.setState((state: $TSFixMe) => ({ |
| 73 | elapsedTime: state.elapsedTime + 1, |
| 74 | })) |
| 75 | this.timerTick() |
| 76 | }, 1000) |
| 77 | } |
| 78 | |
| 79 | render() { |
| 80 | const { recording, i18n } = { ...this.props } as $TSFixMe |