import Ember from 'ember'; export default Ember.Component.extend({ tagName: 'button', click() { let action = this.get('action'); if (typeof action === 'function') { action(); } } });