mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-23 10:53:34 +03:00
13 lines
224 B
JavaScript
13 lines
224 B
JavaScript
|
import Component from '@ember/component';
|
||
|
import layout from '../templates/components/koenig-menu-content';
|
||
|
|
||
|
export default Component.extend({
|
||
|
layout,
|
||
|
|
||
|
tagName: '',
|
||
|
|
||
|
itemSections: null,
|
||
|
|
||
|
itemClicked() {}
|
||
|
});
|