import React from 'react'; import styles from './Row.module.css'; interface RowProps { style: { cols: number; gap: string; align: string; justify: string; }; children: React.ReactNode; } export default function Row({ style, children }: RowProps) { return (