29 lines
658 B
TypeScript
29 lines
658 B
TypeScript
import React from 'react';
|
|
import { View, Text, StyleSheet, Button } from 'react-native';
|
|
import { useNavigation } from '@react-navigation/native';
|
|
|
|
export default function ChallengeListScreen() {
|
|
const navigation = useNavigation<any>();
|
|
|
|
return (
|
|
<View style={styles.container}>
|
|
<Text style={styles.title}>Challenges</Text>
|
|
<Button
|
|
title="Go to Details"
|
|
onPress={() => navigation.navigate('ChallengeDetail')}
|
|
/>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
},
|
|
title: {
|
|
fontSize: 24,
|
|
marginBottom: 20,
|
|
},
|
|
}); |