reasourcing home
This commit is contained in:
10
app/(application)/(tabs)/forum/_layout.tsx
Normal file
10
app/(application)/(tabs)/forum/_layout.tsx
Normal file
@@ -0,0 +1,10 @@
|
||||
//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>
|
||||
</>
|
||||
}
|
||||
9
app/(application)/(tabs)/forum/index.tsx
Normal file
9
app/(application)/(tabs)/forum/index.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import { Text, View } from "react-native";
|
||||
|
||||
export default function Forum() {
|
||||
return (
|
||||
<View>
|
||||
<Text>Tabs Forum</Text>
|
||||
</View>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user