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