mojmajstor/app/(tabs)/(chat)/_layout.tsx
2026-06-06 03:54:22 +02:00

10 lines
194 B
TypeScript

import { Stack } from "expo-router/stack";
export default function ChatStack() {
return (
<Stack>
<Stack.Screen name="index" options={{ headerShown: false }} />
</Stack>
);
}