manifold/web/components/layout/col.tsx

6 lines
184 B
TypeScript
Raw Normal View History

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