"use client"; import { type ReactNode } from "react"; import { cn } from "@/lib/utils"; import { SectionLabel } from "@/components/primitives"; type Pane4SectionProps = { id?: string; title: string; className?: string; children: ReactNode; }; export function Pane4Section({ id, title, className, children, }: Pane4SectionProps) { return (
{title} {children}
); }