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