react-chrono
Version:
A Modern Timeline component for React
11 lines • 611 B
TypeScript
import { default as React } from 'react';
import { TimelineOutlineModel } from './timeline-outline.model';
/**
* TimelineOutline component
* This component renders the outline pane of a timeline, including a list of items and corresponding selection functionality.
* It provides an interface to toggle the outline pane and select items within the timeline.
* The component leverages memoization to prevent unnecessary re-renders and optimizes the rendering process.
*/
declare const TimelineOutline: React.FC<TimelineOutlineModel>;
export { TimelineOutline };
//# sourceMappingURL=timeline-outline.d.ts.map