Files
hipmi-mobile/app/(application)/(tabs)/forum/_layout.tsx
2025-06-25 14:57:05 +08:00

11 lines
232 B
TypeScript

//app/(application)/(tabs)/forum/_layout.tsx
import { Stack } from "expo-router";
export default function ForumLayout() {
return<>
<Stack>
<Stack.Screen name="index" options={{ headerShown: false, }} />
</Stack>
</>
}