import { ReactNode } from "react"; import "./Row.css"; import { getCN, usePadding, renderProps } from "../../utils"; function TabbleRow({ children, ...props }: { props?: any; [x: string]: any }) { return ( {children} ); } export default TabbleRow;