UNPKG

295 BTypeScriptView Raw
1import React from "react";
2
3import { DayPicker } from "react-day-picker";
4
5export function ModifiersHidden() {
6 const hiddenDays = [
7 new Date(2022, 5, 10),
8 new Date(2022, 5, 20),
9 new Date(2022, 5, 11)
10 ];
11
12 return <DayPicker defaultMonth={hiddenDays[0]} hidden={hiddenDays} />;
13}