项目文件夹

文件
wehub-resource-sync 221778fa98
rowboat / apps/x Vitest suites (push) Has been cancelled
rowboat / apps/x Electron package smoke test (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:33:34 +08:00

18 行
431 B
TypeScript

export function PageSection({
title,
children,
danger = false,
}: {
title: string;
children: React.ReactNode;
danger?: boolean;
}) {
return <div className="pb-2">
<div className={`text-lg pb-2 border-b border-b-gray-100` + (danger ? ' text-red-600 border-b-red-600' : '')}>
{title}
</div>
<div className="px-4 py-4">
{children}
</div>
</div>
}