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

8 lines (7 loc) 228 B
import { FC } from 'react'; import { TimeBlock } from '../common'; /** * Each time block represents by this component * @param block - [TimeBlock]{@link TimeBlock} */ export declare const TimeBlockCore: FC<TimeBlock>;