2
0
mirror of https://github.com/status-im/consul.git synced 2025-03-01 13:50:41 +00:00

10 lines
235 B
JavaScript

export default (clickable, collection) => (scope = '.popover-select') => {
return {
scope: scope,
selected: clickable('button'),
options: collection('li[role="none"]', {
button: clickable('button'),
}),
};
};