import { checkForRecent } from 'App/dateRange'; import React from 'react'; import styles from './notificationItem.module.css'; function NotificationItem({ notification: { notificationId, createdAt, name, text, viewed }, onClick, }) { return (
(!viewed ? onClick(notificationId) : null)} >
{checkForRecent(createdAt, 'LLL dd, yyyy, hh:mm a')}
{name}
{text &&
{text}
}
); } NotificationItem.displayName = 'NotificationItem'; export default NotificationItem;