1 | import React from "react";
|
2 |
|
3 | import { DayPicker } from "react-day-picker";
|
4 |
|
5 | export 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 | }
|