Files
mindfulness/client/app/(splash)/_layout.tsx
2026-01-29 19:09:36 +08:00

11 lines
225 B
TypeScript

import { Stack } from 'expo-router';
import React from 'react';
export default function SplashLayout() {
return (
<Stack screenOptions={{ headerShown: false }}>
<Stack.Screen name="splash" />
</Stack>
);
}