(key: Key | null)
| 55 | let {dropProps} = useDroppableItem(props, state, ref); |
| 56 | let id = useId(); |
| 57 | let getText = (key: Key | null) => { |
| 58 | if (key == null) { |
| 59 | return ''; |
| 60 | } else { |
| 61 | return collection.getTextValue?.(key) ?? collection.getItem(key)?.textValue ?? ''; |
| 62 | } |
| 63 | }; |
| 64 | |
| 65 | let label = ''; |
| 66 | let labelledBy: string | undefined; |
no test coverage detected