mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-12 16:14:25 +03:00
7 lines
204 B
JavaScript
7 lines
204 B
JavaScript
|
var NotificationsComponent = Ember.Component.extend({
|
||
|
tagName: 'aside',
|
||
|
classNames: 'notifications',
|
||
|
messages: Ember.computed.alias('notifications')
|
||
|
});
|
||
|
|
||
|
export default NotificationsComponent;
|