WellNuo/app/beneficiaries/_layout.tsx
Sergei 915664d4cc Add scheme files, beneficiaries module, dashboard improvements
Changes:
- Add wellnuoSheme/ folder with project documentation
- Rename patients -> beneficiaries (proper WellNuo terminology)
- Add BeneficiaryContext for state management
- Update API service with WellNuo endpoints
- Add dashboard screen for beneficiary overview
- Update navigation and layout

Scheme files include:
- API documentation with credentials
- Project description
- System analysis
- UX flow
- Legal documents (privacy, terms, support)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-12 13:38:38 -08:00

17 lines
392 B
TypeScript

import { Stack } from 'expo-router';
import { AppColors } from '@/constants/theme';
export default function BeneficiariesLayout() {
return (
<Stack
screenOptions={{
headerShown: false,
contentStyle: { backgroundColor: AppColors.background },
}}
>
<Stack.Screen name="[id]/index" />
<Stack.Screen name="[id]/dashboard" />
</Stack>
);
}