import { FC } from 'react'; import Grid from '../Grid'; import InputWithRef from '../InputWithRef'; import OutlinedInputWithLabel from '../OutlinedInputWithLabel'; const CommonUpsInputGroup: FC = ({ previous: { hostName: previousHostName, ipAddress: previousIpAddress, upsName: previousUpsName, } = {}, }) => ( <> } required /> ), }, 'common-ups-input-cell-ip-address': { children: ( } required /> ), }, }} spacing="1em" /> ); export default CommonUpsInputGroup;