// @flow import * as React from 'react'; import { Label } from './common'; type InputSimpleProps = { name: string, type: string, label?: any, }; export const InputSimple = (inputSimpleProps: InputSimpleProps) => { const { name, type, label, ...inputProps } = inputSimpleProps; return ( <>