2021-12-23 07:03:33 +00:00
|
|
|
import { Component } from '@angular/core';
|
|
|
|
|
|
|
|
@Component({
|
2021-12-29 06:28:51 +00:00
|
|
|
selector: 'app-personal',
|
2021-12-23 07:03:33 +00:00
|
|
|
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-user mr-2 text-2xl"></i>
|
2021-12-24 13:00:37 +00:00
|
|
|
<p class="mt-5 text-center text-lg">Personal Component Content via Child Route</p>
|
2021-12-23 07:03:33 +00:00
|
|
|
</div>
|
|
|
|
`
|
|
|
|
})
|
2021-12-29 06:28:51 +00:00
|
|
|
export class PersonalComponent{
|
2021-12-23 07:03:33 +00:00
|
|
|
|
|
|
|
constructor() { }
|
|
|
|
}
|