diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts index 5a24a24..5d02a33 100644 --- a/src/app/app-routing.module.ts +++ b/src/app/app-routing.module.ts @@ -1,9 +1,11 @@ import { NgModule } from '@angular/core'; import { RouterModule, Routes } from '@angular/router'; import { HomepageComponent } from './homepage/homepage.component'; +import { TeamtestComponent } from './teamtest/teamtest.component'; const routes: Routes = [ { path: 'home', component: HomepageComponent }, + { path: 'teamtest', component: TeamtestComponent}, { path: '**', redirectTo: 'home' } ]; diff --git a/src/app/app.component.html b/src/app/app.component.html index 1786adc..37fefa9 100644 --- a/src/app/app.component.html +++ b/src/app/app.component.html @@ -1,15 +1,20 @@