(type)
| 228 | } |
| 229 | |
| 230 | export const getValueType = (type) => { |
| 231 | let valueType = 'string'; |
| 232 | if (COMPONENTS[type]) { |
| 233 | valueType = COMPONENTS[type].valueType; |
| 234 | } |
| 235 | return valueType; |
| 236 | } |
| 237 | |
| 238 | function getValue(props) { |
| 239 | let { value, name, formData } = props; |
no outgoing calls
no test coverage detected
searching dependent graphs…