react-day-picker / website /examples-v8 /ModifiersHidden.tsx
AbdulElahGwaith's picture
Upload folder using huggingface_hub
cf86710 verified
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} />;
}