parent
a27ab17c17
commit
beb234c28d
@ -0,0 +1,11 @@ |
||||
import { NgModule } from '@angular/core'; |
||||
import { Routes, RouterModule } from '@angular/router'; |
||||
|
||||
|
||||
const routes: Routes = []; |
||||
|
||||
@NgModule({ |
||||
imports: [RouterModule.forChild(routes)], |
||||
exports: [RouterModule] |
||||
}) |
||||
export class MerchantRoutingModule { } |
@ -0,0 +1,14 @@ |
||||
import { NgModule } from '@angular/core'; |
||||
import { CommonModule } from '@angular/common'; |
||||
|
||||
import { MerchantRoutingModule } from './merchant-routing.module'; |
||||
|
||||
|
||||
@NgModule({ |
||||
declarations: [], |
||||
imports: [ |
||||
CommonModule, |
||||
MerchantRoutingModule |
||||
] |
||||
}) |
||||
export class MerchantModule { } |
Loading…
Reference in new issue