2024-12-07 09:24:41 +00:00
|
|
|
import { ScrollView } from 'react-native'
|
2024-12-01 17:58:53 +00:00
|
|
|
|
2024-12-07 09:24:41 +00:00
|
|
|
import { ThemedText } from '@/components/ThemedText'
|
|
|
|
import { ThemedView } from '@/components/ThemedView'
|
2024-12-01 17:58:53 +00:00
|
|
|
|
|
|
|
export default function TrainScreen() {
|
|
|
|
return (
|
|
|
|
<ScrollView>
|
|
|
|
<ThemedView>
|
|
|
|
<ThemedText>Ici on aura la page pour ajouter un trajet en train depuis Rail Planner</ThemedText>
|
|
|
|
</ThemedView>
|
|
|
|
</ScrollView>
|
2024-12-07 09:24:41 +00:00
|
|
|
)
|
2024-12-01 17:58:53 +00:00
|
|
|
}
|