Changelog
1.2.0 - 2015-08-19
<TextInput minRows={ 5 } placeholder="Please fill in description …">
<Select>
<Placeholder>Choose your City</Placeholder>
{
cities.map((city, index) => {
return (
<Option key={ index } value={ city.id } >
{ city.name }
</Option>
);
});
}
</Select>
Changelog
1.1.0 - 2015-07-28
onUpdate({
value: value string,
identifier: identifier of the type you passed,
isMatchingOption: true/false,
isOptionSelection: true/false
})