0ccc8467ec
Adds replication engine and core in-repo addon
18 lines
345 B
JavaScript
18 lines
345 B
JavaScript
import Component from '@ember/component';
|
|
import layout from '../templates/components/vault-logo-spinner';
|
|
|
|
/**
|
|
* @module VaultLogoSpinner
|
|
* `VaultLogoSpinner` displays an animated Vault logo to use for loading screens.
|
|
*
|
|
* @example
|
|
* ```js
|
|
* <VaultLogoSpinner />
|
|
* ```
|
|
*/
|
|
|
|
export default Component.extend({
|
|
layout,
|
|
tagName: '',
|
|
});
|