react-native-calendars
Version:
React Native Calendar Components
9 lines (8 loc) • 312 B
TypeScript
import React from 'react';
import { CalendarProps } from '../calendar';
import { CalendarContextProps } from './Context';
export type WeekProps = CalendarProps & {
context?: CalendarContextProps;
};
declare const Week: React.MemoExoticComponent<(props: WeekProps) => React.JSX.Element>;
export default Week;