21 lines
475 B
JavaScript
21 lines
475 B
JavaScript
|
|
import React, { Component } from 'react';
|
||
|
|
import { Dropdown, Form } from 'semantic-ui-react';
|
||
|
|
|
||
|
|
class MemberSelector extends Component {
|
||
|
|
render(){
|
||
|
|
return (
|
||
|
|
<Form>
|
||
|
|
<label>{'\u00A0'}</label>
|
||
|
|
<Dropdown
|
||
|
|
placeholder="Select Member"
|
||
|
|
selection
|
||
|
|
search
|
||
|
|
fluid
|
||
|
|
/>
|
||
|
|
</Form>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
export default MemberSelector;
|