import { checkForRecent } from 'App/dateRange'; 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;