2024-12-07 10:24:41 +01:00
|
|
|
import { ScrollView } from 'react-native'
|
|
|
|
import { ThemedText } from '@/components/ThemedText'
|
|
|
|
import { ThemedView } from '@/components/ThemedView'
|
2024-12-01 18:58:53 +01:00
|
|
|
|
|
|
|
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>
|
2024-12-07 10:24:41 +01:00
|
|
|
)
|
2024-12-01 18:58:53 +01:00
|
|
|
}
|