import React from 'react'; import SelectInput from 'nfvo-components/input/SelectInput.jsx'; const SelectActionTableCell = ({ options, selected, disabled, onChange, clearable = true, placeholder }) => { return (
onChange(option ? option.value : null)} clearable={clearable} options={options} />
); }; export default SelectActionTableCell;