15 lines
410 B
TypeScript
15 lines
410 B
TypeScript
import { ScrollView } from 'react-native';
|
|
|
|
import { ThemedText } from '@/components/ThemedText';
|
|
import { ThemedView } from '@/components/ThemedView';
|
|
|
|
export default function HistoryScreen() {
|
|
return (
|
|
<ScrollView>
|
|
<ThemedView>
|
|
<ThemedText>Ici on aura la gestion de l'historique des trains empruntés et des challenges effectués</ThemedText>
|
|
</ThemedView>
|
|
</ScrollView>
|
|
);
|
|
}
|