type SortOption = 'newest' | 'oldest' | 'title' interface SortDropdownProps { sortBy: SortOption onSortChange: (value: SortOption) => void } export function SortDropdown({ sortBy, onSortChange }: SortDropdownProps) { return ( ) }