mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 07:09:48 +03:00
7 lines
195 B
JavaScript
7 lines
195 B
JavaScript
|
import TextField from '@ember/component/text-field';
|
||
|
import TextInputMixin from 'ghost-admin/mixins/text-input';
|
||
|
|
||
|
export default TextField.extend(TextInputMixin, {
|
||
|
classNames: 'gh-input'
|
||
|
});
|