
componentDidMount() {
let { times } = this.props;
this.updateTimes(times);
}
componentWillReceiveProps(nextProps) {
let { times } = nextProps;
this.updateTimes(times);
}
componentWillUnmount() {
clearTimeout(this.timer);
}