15 lines
237 B
JavaScript
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;
|