Add tenant PWA help articles and links

This commit is contained in:
Codex Agent
2026-01-23 10:29:20 +01:00
parent a35b32892a
commit 564e1dbcf4
26 changed files with 484 additions and 9 deletions

View File

@@ -88,6 +88,22 @@ vi.mock('@tamagui/switch', () => ({
),
}));
vi.mock('@tamagui/react-native-web-lite', () => ({
Pressable: ({
children,
onPress,
...rest
}: {
children: React.ReactNode;
onPress?: () => void;
[key: string]: unknown;
}) => (
<button type="button" onClick={onPress} {...rest}>
{children}
</button>
),
}));
vi.mock('../theme', () => ({
useAdminTheme: () => ({
text: '#111827',