UNPKG

react-weekly-table

Version:

React weekly scheduler <br/> By default build time ranges for a week, supports up to 31 days <br/> Can work with different timezones, data always return to UTC+0

13 lines (12 loc) 318 B
import { FC } from 'react'; import { CellsProps } from '../common'; /** * Virtual cells provider context hook * @returns [CellsProps]{@link CellsProps} */ export declare const useCells: () => CellsProps; /** * Virtual cells provider */ declare const CellsProvider: FC; export default CellsProvider;