update steps and tabmenu

This commit is contained in:
Çetin
2021-12-23 10:03:33 +03:00
parent 7117f770ca
commit 38574a958f
8 changed files with 93 additions and 25 deletions
@@ -0,0 +1,15 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-confirmationdemo',
template: `
<div class="flex align-items-center py-5 px-3">
<i class="pi pi-fw pi-check mr-2 text-2xl"></i>
<p class="m-0 text-lg">Confirmation Component Content via Child Route</p>
</div>
`
})
export class ConfirmationDemoComponent {
constructor() { }
}
@@ -0,0 +1,15 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-paymentdemo',
template: `
<div class="flex align-items-center py-5 px-3">
<i class="pi pi-fw pi-money-bill mr-2 text-2xl"></i>
<p class="m-0 text-lg">Payment Component Content via Child Route</p>
</div>
`
})
export class PaymentDemoComponent{
constructor() { }
}
@@ -0,0 +1,15 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-personaldemo',
template: `
<div class="flex align-items-center py-5 px-3">
<i class="pi pi-fw pi-user mr-2 text-2xl"></i>
<p class="m-0 text-lg">Personal Component Content via Child Route</p>
</div>
`
})
export class PersonalDemoComponent{
constructor() { }
}
@@ -0,0 +1,15 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-seatdemo',
template: `
<div class="flex align-items-center py-5 px-3">
<i class="pi pi-fw pi-ticket mr-2 text-2xl"></i>
<p class="m-0 text-lg">Seat Component Content via Child Route</p>
</div>
`
})
export class SeatDemoComponent{
constructor() { }
}