mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-15 19:17:02 +02:00
15 lines
246 B
JavaScript
15 lines
246 B
JavaScript
import Component from '@ember/component';
|
|
|
|
const SectionTabs = Component.extend({
|
|
tagName: '',
|
|
|
|
model: null,
|
|
tabType: 'authSettings',
|
|
});
|
|
|
|
SectionTabs.reopenClass({
|
|
positionalParams: ['model', 'tabType'],
|
|
});
|
|
|
|
export default SectionTabs;
|