mirror of
https://github.com/Sosokker/chefhai.git
synced 2025-12-19 05:54:08 +01:00
10 lines
342 B
TypeScript
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>
|
|
);
|
|
} |