react-native-calendars
Version:
React Native Calendar Components
11 lines (10 loc) • 442 B
TypeScript
import React from 'react';
import { AgendaListProps } from './commons';
/**
* @description: AgendaList component
* @note: Should be wrapped with 'CalendarProvider'
* @extends: SectionList
* @example: https://github.com/wix/react-native-calendars/blob/master/example/src/screens/expandableCalendar.js
*/
declare const AgendaList: React.ForwardRefExoticComponent<AgendaListProps & React.RefAttributes<unknown>>;
export default AgendaList;