import React from 'react'; import { Icon } from 'UI'; import styles from './listItem.module.css'; import { Button } from 'UI'; const ListItem = ({ webhook, onEdit, onDelete }) => { return (
{webhook.name}
{webhook.endpoint}
); }; export default ListItem;