'use client' import type { FC } from 'react' import React from 'react' import GroupName from '@/app/components/app/configuration/base/group-name' export type IFeatureGroupProps = { title: string description?: string children: React.ReactNode } const FeatureGroup: FC = ({ title, description, children, }) => { return (
{description && (
{description}
)}
{children}
) } export default React.memo(FeatureGroup)