added material design components
This commit is contained in:
parent
8bf9875e8e
commit
17531f7c29
16 changed files with 236 additions and 164 deletions
|
|
@ -1,9 +1,9 @@
|
|||
import {Component, computed, signal} from '@angular/core';
|
||||
import { CardComponent } from '../card/card.component';
|
||||
import {Category, CategoryService} from '../../services/category.service';
|
||||
import {Merchant, MerchantService} from '../../services/merchant.service';
|
||||
import { Tag } from '../../services/tag.service';
|
||||
import {form, FormField} from '@angular/forms/signals';
|
||||
import {MatCard, MatCardContent, MatCardHeader, MatCardTitle} from '@angular/material/card';
|
||||
|
||||
interface AddExpenseForm {
|
||||
date: Date,
|
||||
|
|
@ -17,8 +17,11 @@ interface AddExpenseForm {
|
|||
@Component({
|
||||
selector: 'app-add-expense',
|
||||
imports: [
|
||||
CardComponent,
|
||||
FormField
|
||||
FormField,
|
||||
MatCard,
|
||||
MatCardHeader,
|
||||
MatCardTitle,
|
||||
MatCardContent
|
||||
],
|
||||
templateUrl: './add-expense.component.html',
|
||||
styleUrl: './add-expense.component.scss',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue