mirror of
https://github.com/MikroWizard/mikrofront.git
synced 2025-06-21 02:15:40 +02:00
13 lines
344 B
TypeScript
13 lines
344 B
TypeScript
import { Component } from '@angular/core';
|
|
import { FooterComponent } from '@coreui/angular';
|
|
|
|
@Component({
|
|
selector: 'app-default-footer',
|
|
templateUrl: './default-footer.component.html',
|
|
styleUrls: ['./default-footer.component.scss'],
|
|
})
|
|
export class DefaultFooterComponent extends FooterComponent {
|
|
constructor() {
|
|
super();
|
|
}
|
|
}
|