Ghost/ghost/admin/app/components/gh-alerts.js
Gabriel Csapo d51f2bcf23 [chore] migrate to eslint@8 and run --fix (#2256)
closes https://github.com/TryGhost/Admin/pull/2107

- updated related babel dependencies
- bumped eslint
- ran `yarn lint:js --fix`
- added eslint ignore comments for some required non-camel-case properties
2022-02-10 10:41:36 +00:00

16 lines
437 B
JavaScript

import Component from '@ember/component';
import classic from 'ember-classic-decorator';
import {alias} from '@ember/object/computed';
import {classNames, tagName} from '@ember-decorators/component';
import {inject as service} from '@ember/service';
@classic
@classNames('gh-alerts')
@tagName('aside')
export default class GhAlerts extends Component {
@service notifications;
@alias('notifications.alerts')
messages;
}