react-day-picker / examples /DefaultMonth.tsx
AbdulElahGwaith's picture
Upload folder using huggingface_hub
cf86710 verified
import React from "react";
import { DayPicker } from "react-day-picker";
export function DefaultMonth() {
return <DayPicker defaultMonth={new Date(1979, 8)} />;
}