function dateFormatter()

in src/components/Team/PersonCard.tsx [19:22]


function dateFormatter(date) {
  const [year, month, day] = date.split('/');
  return `${dateMapper[month]} ${day}, ${year}`;
}