+
+ }
+ >
+
+
+
+
+ {current.name}
+ {current.subtitle ? (
+
+ {current.subtitle}
+
+ ) : null}
+
+
+
+
+
+ {config.menuLabel}
+
+
+ {config.apps.map((app) => {
+ const Icon = APP_SWITCHER_ICONS[app.icon]
+ const isCurrent = app.id === CURRENT_APP_ID
+
+ if (isCurrent) {
+ return (
+
+
+ {app.name}
+
+
+ )
+ }
+
+ return (
+ }>
+
+ {app.name}
+ {app.shortcut ? (
+ {app.shortcut}
+ ) : null}
+
+ )
+ })}
+
+
+
+