react-day-picker
Version:
Customizable Date Picker for React
12 lines (10 loc) • 305 B
text/typescript
import * as components from "../components/custom-components.js";
import type { CustomComponents, DayPickerProps } from "../types/index.js";
export function getComponents(
customComponents: DayPickerProps["components"]
): CustomComponents {
return {
...components,
...customComponents
};
}