import React from "react"; import { observer } from "mobx-react-lite"; // types import { TIssue } from "@plane/types"; type Props = { issue: TIssue; }; export const SpreadsheetAttachmentColumn: React.FC = observer((props) => { const { issue } = props; return (
{issue?.attachment_count} {issue?.attachment_count === 1 ? "attachment" : "attachments"}
); });