Ghost/ghost/admin/app/components/gh-form-group.js
Gabriel Csapo 8d01fb5556 Switched majority of files from EmberObject to native class syntax using @classic decorator (#2227)
no issue

- ran [ember-native-class-codemod](https://github.com/ember-codemods/ember-native-class-codemod) to convert the majority of remaining EmberObject based controllers and components to native class syntax using the `@classic` decorator
- skipped older style modal components (`components/modal-*.js`) due to observed incompatibilities in some cases
2022-02-01 09:34:03 +00:00

8 lines
304 B
JavaScript

import ValidationStatusContainer from 'ghost-admin/components/gh-validation-status-container';
import classic from 'ember-classic-decorator';
import {classNames} from '@ember-decorators/component';
@classic
@classNames('form-group')
export default class GhFormGroup extends ValidationStatusContainer {}