Snai3i-MarketPlace / frontend / src / components / ui / multi-select.tsx
multi-select.tsx
Raw


import CreatableSelect from 'react-select/creatable';

export default ({ options }: any) => (
  <CreatableSelect isMulti options={options} />
);