import React from "react"; // ignore TS error for now until these are rewritten in ts. // @ts-ignore import Dropdown from "components/forms/fields/Dropdown"; import { IDropdownOption } from "interfaces/dropdownOption"; const baseClass = "dropdown-cell"; interface IDropdownCellProps { options: IDropdownOption[]; placeholder: string; onChange: (value: string) => void; } const DropdownCell = ({ options, onChange, placeholder, }: IDropdownCellProps): JSX.Element => { return (