function SortOption()

in src/SortSelector.js [4:14]


function SortOption({ value, currentValue, label, onSelect }) {
  const style = css({
    border: 'none',
    background: 'none',
    width: '8rem',
    fontSize: '1rem',
    fontWeight: currentValue === value ? 700 : 500,
    color: currentValue === value ? 'black' : '#333',
  })
  return (
    <button {...style} onClick={() => onSelect(value)}>