"use client"; import { ReactNode } from "react"; import { cn } from "../../utils"; import { MicroLabel } from "../typography"; type EntitySectionProps = { title: string; columns?: 2 | 3 | 4; children: ReactNode; className?: string; }; export function EntitySection({ title, columns, children, className }: EntitySectionProps) { return (
{title} {columns ? (
{children}
) : (
{children}
)}
); }