mirror of https://github.com/rancher/ui.git
13 lines
345 B
JavaScript
13 lines
345 B
JavaScript
import { inject as service } from '@ember/service';
|
|
import Component from '@ember/component';
|
|
import layout from './template';
|
|
import LazyIcon from 'shared/mixins/lazy-icon';
|
|
|
|
export default Component.extend(LazyIcon, {
|
|
scope: service(),
|
|
layout,
|
|
classNames: ['namespace-app'],
|
|
srcSet: false,
|
|
latestVersion: null,
|
|
});
|