import React from 'react'; import { Button } from 'UI'; import stl from './listItem.module.css'; import cn from 'classnames'; import AlertTypeLabel from '../AlertTypeLabel'; const ListItem = ({ alert, onClear, loading }: any) => { return (
{alert.createdAt && alert.createdAt.toFormat('LLL dd, yyyy, hh:mm a')}

{alert.title}

{alert.description}
) } export default ListItem