Files
hipmi-mobile/app/(application)/(home-tabs)/forum/index.tsx
2025-06-26 14:33:41 +08:00

12 lines
165 B
TypeScript

import { Text, View } from "react-native";
export default function Forum() {
return (
<>
<View>
<Text>Forum</Text>
</View>
</>
);
}