open-vault/ui/app/components/section-tabs.js
2018-04-03 09:16:57 -05:00

15 lines
237 B
JavaScript

import Ember from 'ember';
const SectionTabs = Ember.Component.extend({
tagName: '',
model: null,
tabType: 'authSettings',
});
SectionTabs.reopenClass({
positionalParams: ['model', 'tabType'],
});
export default SectionTabs;