Add expense-list component, DRY up code, add tags

This commit is contained in:
Râu Cao
2023-01-13 14:56:43 +08:00
parent 89f6fa0b5c
commit a93be41e08
5 changed files with 60 additions and 55 deletions
+9
View File
@@ -0,0 +1,9 @@
import Component from '@glimmer/component';
export default class ExpenseListComponent extends Component {
get showDeleteButton () {
return !!this.args.deletable;
}
}