import { FC } from "react"; // components import { ViewEstimateSelect } from "components/issues"; // types import { IIssue } from "types"; type Props = { issue: IIssue; onChange: (data: number) => void; disabled: boolean; }; export const EstimateColumn: FC = (props) => { const { issue, onChange, disabled } = props; return (
); };