* Implements a host component that allows optionally setting the * props `value` and `defaultValue`. If `multiple` is false, the prop must be a * stringable. If `multiple` is true, the prop must be an array of stringables. * * If `value` is not supplied (or null/undefined), user actions
(element, props)
| 14706 | */ |
| 14707 | |
| 14708 | function getHostProps$2(element, props) { |
| 14709 | return _assign({}, props, { |
| 14710 | value: undefined |
| 14711 | }); |
| 14712 | } |
| 14713 | |
| 14714 | function initWrapperState$1(element, props) { |
| 14715 | var node = element; |
no outgoing calls
no test coverage detected