function dateFormatter()

in src/components/Blog/utils.tsx [16:19]


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