mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 15:12:58 +03:00
fb239054a0
follow up from #95 - converts components to use ember-cli-shims
12 lines
219 B
JavaScript
12 lines
219 B
JavaScript
import Component from 'ember-component';
|
|
|
|
export default Component.extend({
|
|
tagName: 'main',
|
|
classNames: ['gh-main'],
|
|
ariaRole: 'main',
|
|
|
|
mouseEnter() {
|
|
this.sendAction('onMouseEnter');
|
|
}
|
|
});
|