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

{alert.title}

{alert.description}
); } export default ListItem;