import React from 'react'; import { ArchiveAllDropdown } from '@/components/session/ArchiveAllDropdown'; interface SessionsTabTitleProps { title: string; onArchiveAll?: () => void; } const SessionsTabTitle: React.FC = ({ title, onArchiveAll }) => ( <>

{title}

{onArchiveAll && } ); export { SessionsTabTitle };