mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-09-22 05:50:48 +02:00
10 lines
291 B
TypeScript
10 lines
291 B
TypeScript
import { ChangeDetectionStrategy, Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'ngx-docs-footer',
|
|
styleUrls: ['./footer.component.scss'],
|
|
templateUrl: './footer.component.html',
|
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
})
|
|
export class NgxDocsFooterComponent {
|
|
}
|