Files
myeasycms-v2/apps/web/app/home/[account]/_components/team-account-layout-page-header.tsx
2024-04-30 22:16:38 +07:00

16 lines
363 B
TypeScript

import { PageHeader } from '@kit/ui/page';
export function TeamAccountLayoutPageHeader(
props: React.PropsWithChildren<{
title: string | React.ReactNode;
description: string | React.ReactNode;
account: string;
}>,
) {
return (
<PageHeader title={props.title} description={props.description}>
{props.children}
</PageHeader>
);
}