UNPKG

@sandro-salzmann/vertical-timeline-component-react

Version:
7 lines (6 loc) 213 B
import { PropsWithChildren } from 'react'; interface SectionProps { title: string; } declare const Section: ({ title, children }: PropsWithChildren<SectionProps>) => JSX.Element; export default Section;