src/app/layout/checkout-footer/checkout-footer.component.ts
| selector | app-checkout-footer |
| styleUrls | checkout-footer.component.scss |
| templateUrl | ./checkout-footer.component.html |
constructor()
|
| ngOnInit |
ngOnInit()
|
|
Returns:
void
|
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-checkout-footer',
templateUrl: './checkout-footer.component.html',
styleUrls: ['./checkout-footer.component.scss']
})
export class CheckoutFooterComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}
<div class="checkout-footer">
</div>