"use client"; import React, { FC } from "react"; type Props = { title: string; description?: string; }; export const ProfileSettingContentHeader: FC = (props) => { const { title, description } = props; return (
{title}
{description &&
{description}
}
); };