Initial TrueGrowth source import

This commit is contained in:
2026-07-07 09:36:36 +08:00
commit 3b6781d695
2283 changed files with 691996 additions and 0 deletions

View File

@@ -0,0 +1,57 @@
import { Search } from 'lucide-react';
import {
Badge,
Button,
Card,
CardContent,
CardHeader,
Input,
PageShell,
Section,
Table,
TBody,
TD,
TH,
THead,
TR,
} from '@/ui';
export function ListPageTemplate() {
return (
<PageShell
title="页面标题"
description="用一句话说明这个页面帮助用户完成什么。"
actions={<Button></Button>}
>
<Section
title="列表筛选"
actions={<Input aria-label="搜索" placeholder="搜索" leading={<Search />} />}
>
<Card>
<CardHeader title="数据列表" description="保持密集、清晰、可扫描。" />
<CardContent>
<Table>
<THead>
<TR>
<TH></TH>
<TH></TH>
<TH></TH>
</TR>
</THead>
<TBody>
<TR>
<TD></TD>
<TD>
<Badge tone="brand"></Badge>
</TD>
<TD></TD>
</TR>
</TBody>
</Table>
</CardContent>
</Card>
</Section>
</PageShell>
);
}