mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 22:02:11 +03:00
7 lines
162 B
JavaScript
7 lines
162 B
JavaScript
import Ember from 'ember';
|
|
import TextInputMixin from 'ghost/mixins/text-input';
|
|
|
|
var TextArea = Ember.TextArea.extend(TextInputMixin);
|
|
|
|
export default TextArea;
|