15 lines
361 B
TypeScript
15 lines
361 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>
|
|
);
|
|
}
|