mirror of
https://github.com/EthanShoeDev/fressh.git
synced 2026-01-11 14:22:51 +00:00
14 lines
418 B
TypeScript
14 lines
418 B
TypeScript
import { Stack } from 'expo-router';
|
|
import React from 'react';
|
|
import { SafeAreaView } from 'react-native-safe-area-context';
|
|
import { KeyList } from '@/components/key-manager/KeyList';
|
|
|
|
export default function SettingsKeyManager() {
|
|
return (
|
|
<SafeAreaView style={{ flex: 1, backgroundColor: '#0B1324' }}>
|
|
<Stack.Screen options={{ title: 'Manage Keys' }} />
|
|
<KeyList mode="manage" />
|
|
</SafeAreaView>
|
|
);
|
|
}
|