UNPKG

167 BTypeScriptView Raw
1import React from "react";
2
3import { DayPicker } from "react-day-picker";
4
5export function DefaultMonth() {
6 return <DayPicker defaultMonth={new Date(1979, 8)} />;
7}