import { FC } from 'react'; import { ImageBackground, View, Text, ScrollView } from 'react-native'; import type { NavigationProp } from '@react-navigation/native'; import { Header, PageWrapper } from '../../../components'; import { styles } from './styles'; type Props = { navigation: NavigationProp; }; export const TripsInfoScreen: FC = ({ navigation }) => { return (
); };