react-native-plain-calendar
Version:
Calendar component for React-Native
34 lines (32 loc) • 772 B
text/typescript
import { Calendar } from './src/components/Calendar';
import type {
CalendarPickerProps,
CalendarProps,
} from './src/components/Calendar';
import type { CellsProps } from './src/components/Cells/Cells';
import type {
DayComponentProps,
DayProps,
} from './src/components/Day/Day';
import type {
HeaderComponentProps,
HeaderProps,
} from './src/components/Header/Header';
import type {
HeaderButtonComponentProps,
HeaderButtonProps,
} from './src/components/Header/HeaderButton';
import type { WeekProps } from './src/components/Week/Week';
export {
Calendar,
CalendarPickerProps,
CalendarProps,
HeaderComponentProps,
HeaderProps,
HeaderButtonComponentProps,
HeaderButtonProps,
WeekProps,
CellsProps,
DayComponentProps,
DayProps,
};