withdrawals.component.ts
290 Bytes
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-withdrawals',
templateUrl: './withdrawals.component.html',
styleUrls: ['./withdrawals.component.scss']
})
export class WithdrawalsComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}