UNPKG

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