-
I am working on Microsoft teams custom development. I need support regarding multi-select dropdown. const empList = [ { key: "1", text: "abc" }, <Dropdown |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Something like
should work, as the dropdown is waiting for DropdownItemProps |
Beta Was this translation helpful? Give feedback.
Something like
const empList = [ { key: "1", header: "abc" }, { key: "2", header: "xyz" }, ];
should work, as the dropdown is waiting for DropdownItemProps