import Ember from 'ember'; export default Ember.Component.extend({ click() { this._child.open(); }, actions: { didInsertCallback(child) { this._child = child; }, willDestroyCallback(child) { this._child = null; } } });