10 lines
166 B
Plaintext
Raw Normal View History

export default Ember.Component.extend({
classNames: ["item"],
actions: {
remove() {
this.sendAction('removeAction', this.get('member'));
}
}
});