mirror of https://github.com/rancher/ui.git
12 lines
321 B
JavaScript
12 lines
321 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'],
|
|
latestVersion: null,
|
|
});
|