import PageHeader, { type PageHeaderProps, } from "@/src/components/layouts/page-header"; import { cn } from "@/src/utils/tailwind"; type SettingsContainerProps = { children: React.ReactNode; headerProps: Omit; }; const ContainerPage = ({ children, headerProps }: SettingsContainerProps) => { return (
{children}
); }; export default ContainerPage;