traintrape-moi/client/app/(tabs)/train.tsx

11 lines
271 B
TypeScript
Raw Normal View History

2024-12-07 09:24:41 +00:00
import { ScrollView } from 'react-native'
2024-12-09 20:00:15 +00:00
import { Surface, Text } from 'react-native-paper'
export default function TrainScreen() {
return (
2024-12-09 20:00:15 +00:00
<Surface>
<Text>Ici on aura la page pour ajouter un trajet en train depuis Rail Planner</Text>
</Surface>
2024-12-07 09:24:41 +00:00
)
}