mirror of
https://github.com/status-im/consul.git
synced 2025-01-10 13:55:55 +00:00
9d21736e9f
* Add copyright headers to UI files * Ensure copywrite file ignores external libs
16 lines
443 B
JavaScript
16 lines
443 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import tabgroup from 'consul-ui/components/tab-nav/pageobject';
|
|
|
|
export default function (visitable, creatable, items, popoverSelect) {
|
|
return creatable({
|
|
visit: visitable('/:dc/peers'),
|
|
peers: items(),
|
|
sort: popoverSelect('[data-test-sort-control]'),
|
|
tabs: tabgroup('tab', ['imported-services', 'exported-services', 'server-addresses']),
|
|
});
|
|
}
|