mirror of
https://github.com/franjsco/tick3t
synced 2024-12-27 09:53:37 +01:00
refactor: Dropdown component
This commit is contained in:
parent
289f01a359
commit
a7ce3013ab
@ -1,32 +1,24 @@
|
||||
import React, { Component } from 'react';
|
||||
import React from 'react';
|
||||
import { Input } from 'reactstrap';
|
||||
|
||||
|
||||
class DropDown extends Component {
|
||||
constructor(props) {
|
||||
super(props);
|
||||
const DropDown = (props) => {
|
||||
let options = props.options;
|
||||
options = options.map((opt) => {
|
||||
return <option key={opt.name} value={opt.name}>{opt.value}</option>
|
||||
});
|
||||
|
||||
this.state = {};
|
||||
}
|
||||
|
||||
render() {
|
||||
let options = this.props.options;
|
||||
options = options.map((opt) => {
|
||||
return <option key={opt.name} value={opt.name}>{opt.value}</option>
|
||||
});
|
||||
|
||||
return(
|
||||
return (
|
||||
<Input
|
||||
name = {this.props.name}
|
||||
type = "select"
|
||||
value = { this.props.value }
|
||||
onChange = { this.props.onChange }
|
||||
name={props.name}
|
||||
type="select"
|
||||
value={props.value}
|
||||
onChange={props.onChange}
|
||||
>
|
||||
<option value="">---</option>
|
||||
{ options }
|
||||
{options}
|
||||
</Input>
|
||||
);
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
export default DropDown;
|
Loading…
Reference in New Issue
Block a user