manifold/web/components/layout/row.tsx

6 lines
184 B
TypeScript
Raw Normal View History

2021-12-10 06:12:02 +00:00
export function Row(props: { children?: any; className?: string }) {
const { children, className } = props
return <div className={`${className} flex flex-row`}>{children}</div>
}