UNPKG

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