import { FunctionComponent } from 'react'; /** A container for both the form error and form label. */ interface FormInfoProps { children: Array | JSX.Element; } const FormSegment: FunctionComponent = ({ children }) => (
{children}
); export default FormSegment;