Add contextual help links to admin pages

This commit is contained in:
Codex Agent
2026-01-23 09:18:46 +01:00
parent 53a90fec33
commit 35f28fd48d
8 changed files with 80 additions and 4 deletions

View File

@@ -65,6 +65,14 @@ vi.mock('../components/Primitives', () => ({
</button>
),
SkeletonCard: () => <div>Loading...</div>,
ContentTabs: ({ header, tabs }: { header?: React.ReactNode; tabs: Array<{ value: string; content: React.ReactNode }> }) => (
<div>
{header}
{tabs.map((tab) => (
<div key={tab.value}>{tab.content}</div>
))}
</div>
),
}));
vi.mock('../components/FormControls', () => ({