2018-11-09 13:44:39 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
2019-07-26 11:46:59 +02:00
|
|
|
import { RouterModule, Routes } from '@angular/router';
|
|
|
|
|
2018-11-09 13:44:39 +01:00
|
|
|
import { HistoryListComponent } from './components/history-list/history-list.component';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Define the routes for the history module
|
|
|
|
*/
|
2019-03-08 10:43:54 +01:00
|
|
|
const routes: Routes = [{ path: '', component: HistoryListComponent, pathMatch: 'full' }];
|
2018-11-09 13:44:39 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Define the routing component and setup the routes
|
|
|
|
*/
|
|
|
|
@NgModule({
|
|
|
|
imports: [RouterModule.forChild(routes)],
|
|
|
|
exports: [RouterModule]
|
|
|
|
})
|
|
|
|
export class HistoryRoutingModule {}
|