0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-13 22:41:32 -05:00
ghost/core/client/views/editor/new.js

10 lines
247 B
JavaScript
Raw Normal View History

import EditorViewMixin from 'ghost/mixins/editor-base-view';
var EditorNewView = Ember.View.extend(EditorViewMixin, {
tagName: 'section',
templateName: 'editor/edit',
classNames: ['entry-container']
});
export default EditorNewView;