Files
vault/ui/app/components/section-tabs.js
2024-03-11 16:44:26 -05:00

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';
}
}