UNPKG

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