import Conditional from '../Conditional'; import React from 'react'; export interface RowProps { children: JSX.Element | JSX.Element[]; title?: JSX.Element | string; description?: JSX.Element | string; } const Row = ({ children, title, description }: RowProps): JSX.Element => { return (
{title}
{description}
{children}
); }; export default Row;