'use client'; import styles from '@components/Row.module.css'; import * as React from 'react'; type RowProps = React.HTMLAttributes & { children?: React.ReactNode; }; const Row = React.forwardRef(({ children, ...rest }, ref) => { return (
{children}
); }); Row.displayName = 'Row'; export default Row;