mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-16 12:16:09 +03:00
9 lines
244 B
JavaScript
9 lines
244 B
JavaScript
|
import styleBody from 'ghost/mixins/style-body';
|
||
|
import loadingIndicator from 'ghost/mixins/loading-indicator';
|
||
|
|
||
|
var SetupRoute = Ember.Route.extend(styleBody, loadingIndicator, {
|
||
|
classNames: ['ghost-setup']
|
||
|
});
|
||
|
|
||
|
export default SetupRoute;
|