argos/dmp-frontend/src/common/modules/page-not-found/page-not-found.component.ts

14 lines
212 B
TypeScript

import { Component, OnInit } from '@angular/core';
@Component({
templateUrl: './page-not-found.component.html'
})
export class PageNotFoundComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}