mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-04 12:37:59 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			346 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			346 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import Component from '@ember/component';
 | 
						|
import layout from '../templates/components/layout-loading';
 | 
						|
 | 
						|
/**
 | 
						|
 * @module LayoutLoading
 | 
						|
 * `LayoutLoading` displays the `VaultLogoSpinner` component in a centered full-page layout.
 | 
						|
 *
 | 
						|
 * @example
 | 
						|
 * ```js
 | 
						|
 * <LayoutLoading />
 | 
						|
 * ```
 | 
						|
 */
 | 
						|
 | 
						|
export default Component.extend({
 | 
						|
  layout,
 | 
						|
  tagName: '',
 | 
						|
});
 |