import { ReactNode } from 'react'; import clsx from 'clsx'; interface TimelineWrapperProps { children: ReactNode; className?: string; } export function TimelineWrapper({ children, className }: TimelineWrapperProps) { return (
); }