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) 394 B
import { FC } from 'react'; import { CustomTimeProps } from '../common'; /** * Custom time provider context hook * @returns [CustomTimeProps]{@link CustomTimeProps} */ export declare const useCustomTime: () => CustomTimeProps; /** * Custom time provider, used for setting time with second precision */ declare const CustomTimeProvider: FC; export default CustomTimeProvider;