UNPKG

ng-404

Version:

A readymade 404 or page-not-found angular component.

37 lines (21 loc) 454 B
# ng404 This is a readymade 404 or page-not-found angular component that can be called using a simple tag. ## Installation Install Ng404 with npm ```bash npm install ng-404 ``` ## Usage Import the component module into your app.module.ts file. ```javascript import { Ng404 } from 'ng-404'; @NgModule({ imports: [ Ng404 ] }) export class AppModule { } ``` Add this simple tag in the component.ts file. ```html <ng-404></ng-404> ```