mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-13 14:39:52 +03:00
8 lines
233 B
JavaScript
8 lines
233 B
JavaScript
|
import styleBody from 'ghost/mixins/style-body';
|
||
|
import AuthenticatedRoute from 'ghost/routes/authenticated';
|
||
|
|
||
|
var SettingsRoute = AuthenticatedRoute.extend(styleBody, {
|
||
|
classNames: ['settings']
|
||
|
});
|
||
|
|
||
|
export default SettingsRoute;
|