UNPKG

247 BTypeScriptView Raw
1import React from "react";
2
3import { DayPicker } from "react-day-picker";
4
5export function Dropdown() {
6 return (
7 <DayPicker
8 captionLayout="dropdown"
9 startMonth={new Date(2015, 6)}
10 endMonth={new Date(2025, 9)}
11 />
12 );
13}