@sandro-salzmann/vertical-timeline-component-react
Version:
A simple component for create a vertical timeline with React
10 lines (9 loc) • 338 B
TypeScript
import { PropsWithChildren } from 'react';
interface YearContentProps {
startDate: string;
endDate?: string;
currentYear?: boolean;
fromLabel?: boolean;
}
declare const YearContent: ({ startDate, endDate, currentYear, fromLabel, }: PropsWithChildren<YearContentProps>) => JSX.Element;
export default YearContent;