22 lines
617 B
TypeScript
22 lines
617 B
TypeScript
import React from 'react';
|
|
|
|
export interface FormSectionProps {
|
|
title: string;
|
|
description?: string;
|
|
children: React.ReactNode;
|
|
}
|
|
|
|
export const FormSection: React.FC<FormSectionProps> = ({ title, description, children }) => {
|
|
return (
|
|
<div className="space-y-4 pb-6 border-b border-gray-200 last:border-b-0">
|
|
<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 className="grid grid-cols-1 md:grid-cols-2 gap-4">
|
|
{children}
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|