Add contextual help links to admin pages
This commit is contained in:
@@ -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', () => ({
|
||||
|
||||
Reference in New Issue
Block a user