UNPKG

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