Files
myeasycms-v2/apps/web/app/home/[account]/_components/team-account-layout-page-header.tsx
2026-03-11 14:47:47 +08:00

14 lines
331 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 description={props.description}>{props.children}</PageHeader>
);
}