11 lines
319 B
TypeScript
11 lines
319 B
TypeScript
|
|
import { Component } from '@angular/core';
|
||
|
|
|
||
|
|
@Component({
|
||
|
|
standalone:true,
|
||
|
|
template: `<div class="layout-footer">
|
||
|
|
SAKAI by
|
||
|
|
<a href="https://primeng.org" target="_blank" rel="noopener noreferrer" class="text-primary font-bold hover:underline">PrimeNG</a>
|
||
|
|
</div>`,
|
||
|
|
})
|
||
|
|
export class AppFooter {}
|