style: run prettier
This commit is contained in:
parent
bc56b498ee
commit
efc2a8ecec
5 changed files with 49 additions and 44 deletions
|
@ -1,8 +1,15 @@
|
|||
import {ChangeDetectionStrategy, Component, EventEmitter, inject, Input, Output,} from '@angular/core';
|
||||
import {TransactionService} from '@service/transaction.service';
|
||||
import {Observable} from 'rxjs';
|
||||
import {AsyncPipe, CurrencyPipe, DatePipe, NgIf} from '@angular/common';
|
||||
import {TransactionData} from '../../model/TransactionData';
|
||||
import {
|
||||
ChangeDetectionStrategy,
|
||||
Component,
|
||||
EventEmitter,
|
||||
inject,
|
||||
Input,
|
||||
Output,
|
||||
} from '@angular/core';
|
||||
import { TransactionService } from '@service/transaction.service';
|
||||
import { Observable } from 'rxjs';
|
||||
import { AsyncPipe, CurrencyPipe, DatePipe, NgIf } from '@angular/common';
|
||||
import { TransactionData } from '../../model/TransactionData';
|
||||
|
||||
const PER_PAGE = 5;
|
||||
|
||||
|
|
Reference in a new issue