diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts index 0ae8d36cd0e5023cb6acf655a229adcc49f1235a..34836b29175db75f27ecb8abae080280594fa5c4 100644 --- a/src/app/app-routing.module.ts +++ b/src/app/app-routing.module.ts @@ -4,9 +4,9 @@ import { PageNotFoundComponent } from './page-not-found/page-not-found.component import { LoginScreenComponent } from './login-screen/login-screen.component'; const routes: Routes = [ -{ path: 'errorpage', component: PageNotFoundComponent }, - {path: 'home', component: LoginScreenComponent }, - {path: '', redirectTo: '/home', pathMatch: 'full' } + {path: 'errorpage', component: PageNotFoundComponent}, + {path: 'home', component: LoginScreenComponent}, + {path: '', redirectTo: '/home', pathMatch: 'full'} ]; @@ -19,4 +19,5 @@ const routes: Routes = [ ], declarations: [] }) -export class AppRoutingModule { } +export class AppRoutingModule { +}