2021-12-23 07:03:33 +00:00
|
|
|
import { Component } from '@angular/core';
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'app-paymentdemo',
|
|
|
|
template: `
|
2021-12-24 13:00:37 +00:00
|
|
|
<div class="flex flex-column align-items-center py-5 px-3">
|
2021-12-23 07:03:33 +00:00
|
|
|
<i class="pi pi-fw pi-money-bill mr-2 text-2xl"></i>
|
2021-12-24 13:00:37 +00:00
|
|
|
<p class="m-0 mt-5 text-center text-lg">Payment Component Content via Child Route</p>
|
2021-12-23 07:03:33 +00:00
|
|
|
</div>
|
|
|
|
`
|
|
|
|
})
|
|
|
|
export class PaymentDemoComponent{
|
|
|
|
|
|
|
|
constructor() { }
|
|
|
|
}
|