mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-23 10:50:13 +01:00
13 lines
263 B
TypeScript
13 lines
263 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'ngx-footer',
|
|
styleUrls: ['./footer.component.scss'],
|
|
template: `
|
|
<span class="created-by">
|
|
Created with ♥ by HQ-Teams @2020
|
|
</span>
|
|
`,
|
|
})
|
|
export class FooterComponent {
|
|
}
|