funky-framadate-front/src/app/shared/components/page-not-found/page-not-found.component.ts

14 lines
384 B
TypeScript
Raw Normal View History

2020-05-01 19:10:17 +02:00
import { Component, Input } from '@angular/core';
2022-02-11 11:53:45 +01:00
import { environment } from '../../../../environments/environment';
2020-04-22 12:56:18 +02:00
@Component({
selector: 'app-page-not-found',
templateUrl: './page-not-found.component.html',
styleUrls: ['./page-not-found.component.scss'],
})
2020-05-01 19:10:17 +02:00
export class PageNotFoundComponent {
@Input()
public message = 'PAGE_NOT_FOUND.DEFAULT';
2022-02-11 11:53:45 +01:00
env: any = environment;
2020-05-01 19:10:17 +02:00
}