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

12 lines
291 B
TypeScript

import { Component, Input } from '@angular/core';
@Component({
selector: 'app-page-not-found',
templateUrl: './page-not-found.component.html',
styleUrls: ['./page-not-found.component.scss'],
})
export class PageNotFoundComponent {
@Input()
public message = 'PAGE_NOT_FOUND.DEFAULT';
}