export interface AppProperties { name: string; icon: string; } type AppNavigatorProps = { apps: Record; }; export default function AppNavigator(props: AppNavigatorProps) { return ( <>

{JSON.stringify(props.apps)}

); }