import * as React from 'react'; import { FastInput, FastTextArea, FastInputNumber } from "components/ui"; import { FormTypes } from "../../types"; function Input(props: FormTypes.FormItem.FormAtomicInputProps) { const { values, config, validateTrigger } = props; const { key, type, placeholder, inputType, notModify, rows } = config; if (type === "multinput") { return ( ); } if (type === "inputnumber") { return ( ); } return ( ); } export default Input;