11 lines
234 B
TypeScript
11 lines
234 B
TypeScript
|
|
import { Component } from '@angular/core';
|
||
|
|
|
||
|
|
@Component({
|
||
|
|
standalone: true,
|
||
|
|
selector: 'app-footer',
|
||
|
|
imports: [],
|
||
|
|
templateUrl: './footer.component.html',
|
||
|
|
styleUrl: './footer.component.scss',
|
||
|
|
})
|
||
|
|
export class FooterComponent {}
|