diff --git a/web-ui/src/app/app-routing.module.ts b/web-ui/src/app/app-routing.module.ts index 7e70a9e..8f483b1 100644 --- a/web-ui/src/app/app-routing.module.ts +++ b/web-ui/src/app/app-routing.module.ts @@ -2,9 +2,11 @@ import { NgModule } from '@angular/core'; import { Routes, RouterModule } from '@angular/router'; import { HomeComponent } from './components/home/home.component'; +import { TransactionDetailsComponent } from './components/transaction-details/transaction-details.component'; const routes: Routes = [ { path: '', component: HomeComponent }, + { path: 'transactions/:txid', component: TransactionDetailsComponent }, { path: '**', redirectTo: '' } ];