Files
SeaGateway-App/app/(tabs)/tripInfo.tsx
2025-10-30 16:32:11 +07:00

23 lines
578 B
TypeScript

import { ThemedText } from "@/components/themed-text";
import { ThemedView } from "@/components/themed-view";
import TripCostTable from "@/components/tripInfo/TripCostTable";
import { StyleSheet } from "react-native";
export default function TripInfoScreen() {
return (
<ThemedView style={styles.container}>
<ThemedText type="title">Thông Tin Chuyến Đi</ThemedText>
<TripCostTable />
</ThemedView>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
alignItems: "center",
justifyContent: "center",
padding: 20,
},
});