mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 07:09:48 +03:00
fb239054a0
follow up from #95 - converts components to use ember-cli-shims
13 lines
315 B
JavaScript
13 lines
315 B
JavaScript
import Component from 'ember-component';
|
|
import {alias} from 'ember-computed';
|
|
import injectService from 'ember-service/inject';
|
|
|
|
export default Component.extend({
|
|
tagName: 'aside',
|
|
classNames: 'gh-notifications',
|
|
|
|
notifications: injectService(),
|
|
|
|
messages: alias('notifications.notifications')
|
|
});
|