src/app/checkout/payment/payment-modes-list/credit-card/credit-card.component.ts
selector | app-credit-card |
styleUrls | credit-card.component.scss |
templateUrl | ./credit-card.component.html |
constructor()
|
ngOnInit |
ngOnInit()
|
Returns:
void
|
import { Component, OnInit, Input } from '@angular/core';
@Component({
selector: 'app-credit-card',
templateUrl: './credit-card.component.html',
styleUrls: ['./credit-card.component.scss']
})
export class CreditCardComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}
<p>
credit-card works!
</p>