vault/ui/app/components/section-tabs.js
Chelsea Shaw 8d92c3026b
UI: Ember deprecation - reopen class (#25851)
Co-authored-by: claire bontempo <68122737+hellobontempo@users.noreply.github.com>
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';
}
}