import React from 'react'; interface SectionCardProps { title?: string; children: React.ReactNode; className?: string; titleClassName?: string; bodyClassName?: string; } export const SectionCard: React.FC = ({ title, children, className = 'mb-4', titleClassName = '', bodyClassName = '', }) => { return (
{title && (
{title}
)}
{children}
); };