mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-04 12:37:59 +00: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;
 |