Broker System for Supercredit
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
484B

  1. import { Component, Input, OnInit } from '@angular/core';
  2. import {DatePipe} from '@angular/common';
  3. import {TransTailsComponent} from "./trans-tails/trans-tails.component";
  4. @Component({
  5. selector: 'trans-details',
  6. templateUrl: './trans-details.component.html',
  7. styleUrls: ['./trans-details.component.scss']
  8. })
  9. export class TransDetailsComponent implements OnInit {
  10. @Input() public item: Object;
  11. constructor() { }
  12. ngOnInit(): void {
  13. console.log(this.item);
  14. }
  15. }