- Restructured profile screens location - Updated beneficiary detail page - Updated API service - Updated all scheme files (MainScheme, ENV API, Discussion, AppStore, SysAnal) - Added PageHeader component 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
7 lines
157 B
TypeScript
7 lines
157 B
TypeScript
import { Slot } from 'expo-router';
|
|
|
|
export default function ProfileLayout() {
|
|
// Using Slot instead of Stack to keep tab bar visible
|
|
return <Slot />;
|
|
}
|