How to nested ListBox/GridList components. #6016
-
Hey there! I'm curious about which component from <ListBox
aria-label="Animals"
items={options}
selectionMode="multiple"
>
{item => (
<ListBox
aria-label="Animals"
items={item.subItem}
selectionMode="multiple"
>
{subItem => <ListBoxItem>{subItem.name}</ListBoxItem>}
</ListBox>
)}
</ListBox> Here is an illustration of what I'm trying to accomplish: Screen.Recording.2024-03-06.at.2.46.29.PM.mov |
Beta Was this translation helpful? Give feedback.
Answered by
snowystinger
Mar 6, 2024
Replies: 1 comment
-
That looks more like a Tree, which we are currently working on. You could checkout the PR for it #5756 and you can try it out in nightlies |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
brenotx
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
That looks more like a Tree, which we are currently working on. You could checkout the PR for it #5756 and you can try it out in nightlies