import React from "react"; import { DayPicker } from "../DayPicker"; import { DateRange } from "./shared"; const Test = () => { return ( <> {}} /> {}} /> {/* @ts-expect-error Missing `selected` */} {}} /> {/* Allow undefined as initial selected value */} {}} /> {}} /> {}} /> {/** @ts-expect-error Wrong selected prop */} {}} /> {}} /> {}} /> {}} selected={new Date()} onDayClick={() => {}} /> ); }; it("should type-check", () => { expect(Test).toBeTruthy(); });