import React from 'react'; export interface IFormRow { className?: string; children: any; [x: string]: any; } export const FormRow: React.FC = (props) => { const { children, className = '', ...otherProps } = props; return (
{children}
); };