|
|
@ -5,7 +5,11 @@ import MenuItem from 'material-ui/MenuItem'; |
|
|
|
export default class Purpose extends React.Component { |
|
|
|
render () { |
|
|
|
return ( |
|
|
|
<SelectField value={this.props.default} onChange={this.props.handleChange.bind(this)}> |
|
|
|
<SelectField |
|
|
|
value={this.props.default} |
|
|
|
onChange={this.props.handleChange.bind(this)} |
|
|
|
fullWidth={true} |
|
|
|
> |
|
|
|
<MenuItem value={'VOLUNTEER'} primaryText="Volunteer" /> |
|
|
|
<MenuItem value={'FIX'} primaryText="Fix" /> |
|
|
|
<MenuItem value={'WORKSHOP'} primaryText="Workshop" /> |
|
|
@ -15,4 +19,3 @@ export default class Purpose extends React.Component { |
|
|
|
); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|