src/app/core/containers/page-not-found/page-not-found.component.ts
Page Not Found component
| selector | app-page-not-found |
| templateUrl | ./page-not-found.component.html |
import { Component} from '@angular/core';
import strings from '@i18n/strings.json';
/**
* Page Not Found component
*/
@Component({
selector: 'app-page-not-found',
templateUrl: './page-not-found.component.html',
// styleUrls: ['./page-not-found.component.scss']
})
export class PageNotFoundComponent {
/**
* @ignore
*/
__ = strings;
}
<div class="py-5 my-5">
<div>
<h1>{{__.pageNotFound}}</h1>
</div>
</div>