2026-01-01 13:21:25 -08:00

16 lines
347 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>
);
}