export const sortAlphabetically = (
  a: { name: string },
  b: { name: string }
): number => a.name.localeCompare(b.name);
