mirror of https://github.com/hashicorp/consul
9 lines
284 B
JavaScript
9 lines
284 B
JavaScript
|
export default function(visitable, creatable, clickable, intentions, popoverSelect) {
|
||
|
return creatable({
|
||
|
visit: visitable('/:dc/intentions'),
|
||
|
intentions: intentions(),
|
||
|
sort: popoverSelect('[data-test-sort-control]'),
|
||
|
create: clickable('[data-test-create]'),
|
||
|
});
|
||
|
}
|