react-native-easy-calendar
Version:
Customizable, easy-to-use, performant calendar components for React Native
10 lines (9 loc) • 331 B
TypeScript
import React from 'react';
import type { WrapperCalendarProps } from '../Entities';
interface SpecificProps {
onSelectDate: (date: string) => void;
selectedDate: string;
}
declare type Props = SpecificProps & WrapperCalendarProps;
declare const DateSelectionCalendar: React.FC<Props>;
export default DateSelectionCalendar;