Files
hipmi-mobile/app/(application)/event/index.tsx
2025-06-26 10:29:22 +08:00

9 lines
160 B
TypeScript

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