BrixCafe/app/screens/auth/_layout.tsx
2025-04-16 02:22:34 +01:00

9 lines
159 B
TypeScript

import { Stack } from 'expo-router';
export default function AuthLayout() {
return (
<Stack screenOptions={{ headerShown: false }}>
</Stack>
);
}