* 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
(element, props)
| 2376 | |
| 2377 | |
| 2378 | function getHostProps$2(element, props) { |
| 2379 | return _assign({}, props, { |
| 2380 | value: undefined |
| 2381 | }); |
| 2382 | } |
| 2383 | function initWrapperState$1(element, props) { |
| 2384 | var node = element; |
| 2385 |
no outgoing calls
no test coverage detected