mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-30 01:42:29 +03:00
8 lines
212 B
JavaScript
8 lines
212 B
JavaScript
|
import Component from '@glimmer/component';
|
||
|
import {inject as service} from '@ember/service';
|
||
|
|
||
|
export default class GhCustomViewTitleComponent extends Component {
|
||
|
@service customViews;
|
||
|
@service router;
|
||
|
}
|