File: addon/mixins/no-op.js
import Mixin from '@ember/object/mixin';
/**
* @class Noop
* @namespace Mixins
*/
export default Mixin.create({
actions: {
noop() {}
}
});

import Mixin from '@ember/object/mixin';
/**
* @class Noop
* @namespace Mixins
*/
export default Mixin.create({
actions: {
noop() {}
}
});