I can't showing data as text / label on react native
and got error

and here is my code
function ResetPasswordScreen({navigation}) {
const [email] = useState({ value: '', error: '' });
const [password, setPassword] = useState({ value: '', error: '' });
function ResetPasswordFunction() {
{
fetch("http://192.168.0.18/Api/reset_password.php",{
method: 'POST',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({
email : email.value,
password : password.value
})
})
.then((response) => response.json())
.then((responseJson) => {
console.log(responseJson.message);
if(responseJson.success === 1)
{
alert(responseJson.message)
navigation.navigate('Settings')
}
else{
alert(responseJson.message)
}
}).catch((error) => {
console.error(error);
});
}
}
return (
<View style={{ flex: 1, justifyContent: 'flex-start', alignItems: 'center' }}>
<Header>Reset Password</Header>
<Text style = {styles.TextComponentStyle}> { email = email.value} </Text>
<TextInput
label="Password"
returnKeyType="done"
value={password.value}
onChangeText={password => setPassword({ value: password})}
error={!!password.error}
errorText={password.error}
secureTextEntry={true}
/>
<Button mode="contained" onPress={ResetPasswordFunction} >
Reset Password
</Button>
</View>