mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-19 13:41:10 +02: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';
|
|
}
|
|
}
|