14 lines
405 B
TypeScript
14 lines
405 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>
|
|
)
|
|
}
|