EddDoubleD/orunmila

Add a 404 page

Opened this issue · 0 comments

  1. Template 404 page examples
  2. Create ng component NotFoundComponent on path
  3. Add routing into app-routing.module.ts
const routes: Routes = [
...
  { path: '**', component: NotFoundComponent }
];