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.
14 lines
409 B
14 lines
409 B
import { NgModule } from '@angular/core';
|
|
import { Routes, RouterModule } from '@angular/router';
|
|
import {OrderOilListComponent} from './order-oil/order-oil-list/order-oil-list.component';
|
|
|
|
|
|
const routes: Routes = [
|
|
{ path: 'order-oil-list', component: OrderOilListComponent}
|
|
];
|
|
|
|
@NgModule({
|
|
imports: [RouterModule.forChild(routes)],
|
|
exports: [RouterModule]
|
|
})
|
|
export class OrderManageRoutingModule { }
|
|
|