File size: 272 Bytes
cf86710 | 1 2 3 4 5 6 7 8 9 10 11 12 | import { DayPicker } from "./react-day-picker-v8";
export function ModifiersHidden() {
const hiddenDays = [
new Date(2022, 5, 10),
new Date(2022, 5, 20),
new Date(2022, 5, 11)
];
return <DayPicker defaultMonth={hiddenDays[0]} hidden={hiddenDays} />;
}
|