import React from "react"; import { DayPicker } from "react-day-picker"; /** Test for the next focus day to not cause an infinite recursion. */ export function FocusRecursive() { const disabledDays = [ new Date(2022, 5, 4), { after: new Date(2022, 5, 26) } ]; return ( ); }