UNPKG

205 BTypeScriptView Raw
1import React from "react";
2
3import { DayPicker } from "react-day-picker";
4
5export function FromToYear() {
6 return (
7 <DayPicker defaultMonth={new Date(2024, 0)} fromYear={2024} toYear={2026} />
8 );
9}