Update folder structure and refactor

This commit is contained in:
Çetin
2021-12-29 09:28:51 +03:00
parent 01624fc767
commit 940d8ee261
35 changed files with 269 additions and 268 deletions

View File

@@ -0,0 +1,15 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-payment',
template: `
<div class="flex flex-column align-items-center py-5 px-3">
<i class="pi pi-fw pi-money-bill mr-2 text-2xl"></i>
<p class="m-0 mt-5 text-center text-lg">Payment Component Content via Child Route</p>
</div>
`
})
export class PaymentComponent{
constructor() { }
}