funky-framadate-front/src/app/core/components/footer/footer.component.ts

15 lines
361 B
TypeScript
Raw Normal View History

2020-04-22 12:56:18 +02:00
import { Component, OnInit } from '@angular/core';
2020-10-31 16:44:09 +01:00
import { environment } from '../../../../environments/environment';
2020-04-22 12:56:18 +02:00
@Component({
selector: 'app-footer',
templateUrl: './footer.component.html',
styleUrls: ['./footer.component.scss'],
})
export class FooterComponent implements OnInit {
2020-10-31 16:44:09 +01:00
public env = environment;
2020-04-22 12:56:18 +02:00
constructor() {}
ngOnInit(): void {}
}