import React, { type FC, type HTMLProps, type ReactNode } from 'react';
import { clsx } from 'clsx';
import { TitleTabLayout } from '../../components';
import { cn } from '../../utils/cn';
export const SettingLayout: FC<
{ title?: ReactNode; action?: ReactNode; children?: ReactNode } & Omit, 'title' | 'action'>
> = ({ title, children, className, action, ...props }) => {
return (
{children}
);
return (
{title}
{action}
{children}
);
};