mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-11-02 19:47:54 +00:00
13 lines
249 B
JavaScript
13 lines
249 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Component from '@glimmer/component';
|
|
|
|
export default class SectionTabs extends Component {
|
|
get tabType() {
|
|
return this.args.tabType || 'authSettings';
|
|
}
|
|
}
|