mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-10-31 02:28:09 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			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;
 | 
