(props)
| 7875 | } |
| 7876 | |
| 7877 | function warnIfValueIsNull(props) { |
| 7878 | if (props != null && props.value === null && !didWarnValueNull) { |
| 7879 | "development" !== 'production' ? warning(false, '`value` prop on `input` should not be null. ' + 'Consider using the empty string to clear the component or `undefined` ' + 'for uncontrolled components.') : void 0; |
| 7880 | |
| 7881 | didWarnValueNull = true; |
| 7882 | } |
| 7883 | } |
| 7884 | |
| 7885 | /** |
| 7886 | * Implements an <input> native component that allows setting these optional |