'use client' import type { Email } from './types' import { PRIORITY_COLORS, SENDER_TYPE_SHORT_LABELS } from './types' interface EmailListItemProps { email: Email isSelected: boolean onClick: () => void } export default function EmailListItem({ email, isSelected, onClick }: EmailListItemProps) { return ( ) }