16 lines
290 B
TypeScript
16 lines
290 B
TypeScript
|
import { Component, OnInit } from '@angular/core';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-transaction',
|
||
|
templateUrl: './transaction.component.html',
|
||
|
styleUrls: ['./transaction.component.scss']
|
||
|
})
|
||
|
export class TransactionComponent implements OnInit {
|
||
|
|
||
|
constructor() { }
|
||
|
|
||
|
ngOnInit() {
|
||
|
}
|
||
|
|
||
|
}
|