15 lines
357 B
TypeScript
15 lines
357 B
TypeScript
import { ScrollView } from 'react-native'
|
|
|
|
import { ThemedText } from '@/components/ThemedText'
|
|
import { ThemedView } from '@/components/ThemedView'
|
|
|
|
export default function ChallengesScreen() {
|
|
return (
|
|
<ScrollView>
|
|
<ThemedView>
|
|
<ThemedText>Ici on aura la gestion des challenges</ThemedText>
|
|
</ThemedView>
|
|
</ScrollView>
|
|
)
|
|
}
|