23 lines
578 B
TypeScript
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,
|
|
},
|
|
});
|