1 | import React from "react";
|
2 |
|
3 | import { DayPicker } from "react-day-picker";
|
4 |
|
5 | export function FromToMonth() {
|
6 | const defaultMonth = new Date(2015, 5);
|
7 | return (
|
8 | <DayPicker
|
9 | defaultMonth={defaultMonth}
|
10 | fromMonth={defaultMonth}
|
11 | toMonth={new Date(2015, 10, 20)}
|
12 | />
|
13 | );
|
14 | }
|