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