pagraphcontrol/components/select/index.js
2018-11-13 06:01:58 +03:00

8 lines
217 B
JavaScript

const r = require('r-dom');
module.exports = ({ options, optionValue, optionText, ...props }) => r.select({
className: 'select',
...props,
}, options.map(o => r.option({ value: optionValue(o) }, optionText(o))));