UNPKG

283 BTypeScriptView Raw
1import React from "react";
2
3import { UTCDate } from "@date-fns/utc";
4
5import {
6 DayPicker as DayPickerComponent,
7 type DayPickerProps
8} from "./index.js";
9
10export function DayPicker(props: DayPickerProps) {
11 return <DayPickerComponent dateLib={{ Date: UTCDate }} {...props} />;
12}