open-vault/ui/app/components/section-tabs.js
Matthew Irish d509588cd2
Ember update (#5386)
Ember update - update ember-cli, ember-data, and ember to 3.4 series
2018-09-25 11:28:26 -05:00

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;