Co-Authored-By: Bianca Nenciu <nbianca@users.noreply.github.com> Co-Authored-By: David Taylor <david@taylorhq.com>
10 lines
152 B
JavaScript
10 lines
152 B
JavaScript
export default Ember.Component.extend({
|
|
classNames: ["item"],
|
|
|
|
actions: {
|
|
remove() {
|
|
this.removeAction(this.get("member"));
|
|
}
|
|
}
|
|
});
|