import * as React from 'react'; import { FormFieldAlerts, FormFieldInput, FormFieldLabel } from '.'; interface IFormFieldProps { children?: any; input: JSX.Element | string | Array; label: string | JSX.Element | Array; error?: any; warning?: any; info?: any; } export const FormField = ({ label, children, input, error, warning, info, ...rest }: IFormFieldProps) => (
{label} {children}
);