mirror of
https://github.com/Sosokker/chefhai.git
synced 2025-12-20 14:34:07 +01:00
13 lines
359 B
TypeScript
13 lines
359 B
TypeScript
import { Text, View } 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>
|
|
);
|
|
}
|