@sandro-salzmann/vertical-timeline-component-react
Version:
A simple component for create a vertical timeline with React
10 lines (9 loc) • 341 B
TypeScript
import { PropsWithChildren } from 'react';
import { DateFormat, Theme } from '../../interfaces';
interface TimelineProps {
theme?: Theme;
lang?: string;
dateFormat?: DateFormat;
}
declare const Timeline: ({ theme, lang, children, dateFormat, }: PropsWithChildren<TimelineProps>) => JSX.Element;
export default Timeline;