openreplay/frontend/app/components/ui/Select/Select.js
2021-05-01 15:12:01 +05:30

14 lines
272 B
JavaScript

import { Select } from 'semantic-ui-react';
export default ({
placeholder, options, value, onChange, ...props
}) => (
<Select
{ ...props }
placeholder={ placeholder }
options={ options }
value={ value }
onChange={ onChange }
selection
/>
);