them icon
This commit is contained in:
22
app/(tabs)/tripInfo.tsx
Normal file
22
app/(tabs)/tripInfo.tsx
Normal file
@@ -0,0 +1,22 @@
|
||||
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,
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user