mirror of
https://github.com/status-im/consul.git
synced 2025-01-11 22:34:55 +00:00
10 lines
235 B
JavaScript
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'),
|
|
}),
|
|
};
|
|
};
|