diff --git a/src/app/app.component.html b/src/app/app.component.html index f56c0d5..f4fdf20 100644 --- a/src/app/app.component.html +++ b/src/app/app.component.html @@ -3,8 +3,8 @@ \ No newline at end of file diff --git a/src/app/app.routes.ts b/src/app/app.routes.ts index 482d17e..f430104 100644 --- a/src/app/app.routes.ts +++ b/src/app/app.routes.ts @@ -2,16 +2,14 @@ import { Routes } from '@angular/router'; import { ScreenBasicComponent } from './screen-basic/screen-basic.component'; import { ScreenEditComponent } from './screen-edit/screen-edit.component'; import { ScreenRotationsComponent } from './screen-rotations/screen-rotations.component'; -import { AppComponent } from './app.component'; export const routes: Routes = [ { path: '', children: [ - { path: '', redirectTo: 'edit', pathMatch: 'full' }, - { path: 'edit', component: ScreenEditComponent }, - { path: 'basic', component: ScreenBasicComponent }, - { path: 'rotations', component: ScreenRotationsComponent } + { path: '', component: ScreenEditComponent }, + { path: 'basic.t', component: ScreenBasicComponent }, + { path: 'rotations.t', component: ScreenRotationsComponent } ] } ];