import { Component } from "solid-js" import type { Attachment } from "../types/attachment" interface AttachmentChipProps { attachment: Attachment onRemove: () => void } const AttachmentChip: Component = (props) => { return (
{props.attachment.display}
) } export default AttachmentChip