Skip to content

Commit

Permalink
Adding route for artist train component
Browse files Browse the repository at this point in the history
  • Loading branch information
danielve4 committed Apr 21, 2019
1 parent b863e61 commit faf5c0d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion angular/src/app/app-routing.module.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';

const routes: Routes = [];
import { ArtisttrainComponent } from './artisttrain/artisttrain.component';

const routes: Routes = [
{ path: 'artisttrain', component: ArtisttrainComponent }
];

@NgModule({
imports: [RouterModule.forRoot(routes)],
Expand Down

0 comments on commit faf5c0d

Please sign in to comment.