21 lines
546 B
TypeScript
21 lines
546 B
TypeScript
import React from 'react';
|
|
|
|
export interface SectionProps {
|
|
title: string;
|
|
description?: string;
|
|
children: React.ReactNode;
|
|
className?: string;
|
|
}
|
|
|
|
export const Section: React.FC<SectionProps> = ({ title, description, children, className = '' }) => {
|
|
return (
|
|
<div className={`space-y-4 ${className}`}>
|
|
<div>
|
|
<h3 className="text-lg font-semibold text-gray-900">{title}</h3>
|
|
{description && <p className="text-sm text-gray-600 mt-1">{description}</p>}
|
|
</div>
|
|
<div>{children}</div>
|
|
</div>
|
|
);
|
|
};
|