-
{app.name}
+
+ {apps.map(app => {
+ const isSelected = selectedApp?.id === app.id
+ return (
+
-
- ))}
+ {/* App icon */}
+
+ {getAppIcon(app.name)}
+
+ {/* App name */}
+
+ {app.name}
+
+ {/* Selection indicator */}
+ {isSelected && (
+
+ )}
+
+ )
+ })}