import React from 'react'; import PropTypes from 'prop-types'; const DateFormatter = ({ date, color }) => { const formattedDate = new Intl.DateTimeFormat('en-US', { year: 'numeric', month: 'long', day: 'numeric' }).format(new Date(date)); return