import { cn } from "@/lib/utils" interface ContentBoxProps { title: string, children: React.ReactNode } const ContentBox = (props: ContentBoxProps)=>{ return(
{props.title}
{props.children}
); } export default ContentBox;