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