11 lines
271 B
TypeScript
Raw Normal View History

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