+ {results.map((item, index) => {
+ return (
+
{
+ handleClick(item)
+ }}
+ onPointerMove={() => pointerMoved && setActiveIndex(index)}
+ >
+
+
+ {item.title}
+ {item.desc && {item.desc}}
+
+ {item.rightIcons && (
+
+ {item.rightIcons.map((i: string) => (
+
+ ))}
+
+ )}
+
+ )
+ })}
+ {itemShortcut && (
+
+ {Object.entries(itemShortcut).map(([key, shortcut]) => {
+ return (
+
+ {shortcut.title}
+
+ )
+ })}
+
+ )}
+
+
+ {listItem?.content && (
+