UNPKG

painless-ui

Version:
7 lines (6 loc) 236 B
import React from 'react'; const Option = (props) => { const { value, children, ...customProps } = props; return (React.createElement("option", Object.assign({ value: value }, customProps), children)); }; export default Option;