interface DateSeparatorProps { label: string } const DateSeparator = ({ label }: DateSeparatorProps) => (
{label}
) export default DateSeparator