import React, { PropsWithChildren } from "react"; interface IFormSectionProps { title?: string; description?: string; } const FormSection = ({ title, description, children, }: PropsWithChildren) => { return (
{title ?

{title}

: null} {description ? (
{description}
) : null}
{children}
); }; export default React.memo(FormSection);