reactjsdatedatepickerdays

Show only days in react date picker


I want to custumize my DatePicker and only show days cause i want the user to choose one or multiple day from 1 to 31 with ignoring the month and the year

I am using the date picker from "react-multi-date-picker"

<DatePicker
  id={"startDate"}
  className="form-control"
  multiple
  format="DD"
/>;

Solution

  • You can add following props as below

     <DatePicker
          id={'startDate'}
          className="form-control"
          multiple
          format="DD"
          buttons={false}
          disableYearPicker
          disableMonthPicker
        />