import React from 'react'; export interface RowProps { children?: React.ReactNode; className?: string; } export const Row: React.FC = ({ children, className = '' }) => { return
{children}
; };