UNPKG

256 BTypeScriptView Raw
1import React from "react";
2
3import { DayPicker } from "react-day-picker";
4
5export function DropdownMultipleMonths() {
6 return (
7 <DayPicker
8 numberOfMonths={5}
9 captionLayout="dropdown"
10 fromYear={2015}
11 toYear={2025}
12 />
13 );
14}