chefhai/app/(tabs)/forum.tsx
Tantikon Phasanphaengsi 23cf0f7997 create home page
2025-05-08 20:59:02 +07:00

10 lines
342 B
TypeScript

import { View, Text } from 'react-native';
export default function ForumScreen() {
return (
<View className="flex-1 items-center justify-center bg-white">
<Text className="text-2xl font-bold">Forum Screen</Text>
<Text className="mt-2 text-gray-500">Discussions and community posts will appear here</Text>
</View>
);
}