15 lines
390 B
TypeScript
15 lines
390 B
TypeScript
|
import { ScrollView } from 'react-native';
|
||
|
|
||
|
import { ThemedText } from '@/components/ThemedText';
|
||
|
import { ThemedView } from '@/components/ThemedView';
|
||
|
|
||
|
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>
|
||
|
);
|
||
|
}
|