You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
315 B
9 lines
315 B
11 months ago
|
import { Routes } from '@angular/router';
|
||
|
import {MerAddComponent} from "./mer-add/mer-add.component";
|
||
|
import {MerListComponent} from "./mer-list/mer-list.component";
|
||
|
|
||
|
export const MERCHANT_ROUTES: Routes = [
|
||
|
{ path: 'mer-list', component: MerListComponent },
|
||
|
{ path: 'mer-add', component: MerAddComponent }
|
||
|
];
|