shouldComponentUpdate(nextProps) {
    const { data } = this.props;
    if (data === nextProps.data) return false;
    const oldModel = MeetingTimeModel.deserialize(data);
    const newModel = MeetingTimeModel.deserialize(nextProps.data);