onMonthChange(value) {
    const month = value || possibleMonthsForDay(1)[0];

    this.setState({ month: month, possibleDays: possibleDaysForMonth(month.value) });
  }