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) • 384 B
TypeScript
import { FC } from 'react';
import { TimeBlockProps } from '../common';
/**
* Timeblock provider context hook
* @returns [TimeBlockProps]{@link TimeBlockProps}
*/
export declare const useTimeBlock: () => TimeBlockProps;
/**
* Timeblock provider, keeps all timeblocks and main action with it
*/
declare const TimeBlockProvider: FC;
export default TimeBlockProvider;