File size: 259 Bytes
cf86710 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | import React from "react";
import { DayPicker } from "react-day-picker";
/** Test for the next focus day to not cause an infinite recursion. */
export function AutoFocus() {
return (
<div>
<DayPicker autoFocus mode="single" />
</div>
);
}
|