addon/form-items/CheckBoxView.js File
import TextInputView from "./TextInputView";
import template from "../templates/views/check-box";
/**
* View for checkbox input.
*
* @class EmberForm.CheckBoxView
* @extends EmberForm.TextInputView
* @module ember-form
* @submodule ember-form-items
*/
export default TextInputView.extend({
template : template,
});
ember-form