mirror of
https://github.com/EthanShoeDev/fressh.git
synced 2026-01-10 22:02:50 +00:00
29 lines
647 B
TypeScript
29 lines
647 B
TypeScript
import { Link } from 'expo-router';
|
|
import { View, Text, StyleSheet } from 'react-native';
|
|
|
|
export default function Tab() {
|
|
return (
|
|
<View style={styles.container}>
|
|
<Text style={{ color: '#E5E7EB', marginBottom: 12 }}>Settings</Text>
|
|
<Link
|
|
href="/(shared)/key-manager"
|
|
style={{ color: '#60A5FA', marginBottom: 8 }}
|
|
>
|
|
Manage Keys
|
|
</Link>
|
|
<Link href="/(modals)/key-manager?select=1" style={{ color: '#60A5FA' }}>
|
|
Open Key Picker (modal)
|
|
</Link>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
backgroundColor: '#0B1324',
|
|
},
|
|
});
|