Advertisement
Guest User

Untitled

a guest
Mar 25th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. import { NgModule } from '@angular/core';
  2. import { RouterModule } from '@angular/router';
  3. import { ProjectRouteModule } from './order.route';
  4. import { ComponentA } from './component-a.cmp';
  5. import { ComponentB } from './component-b.cmp';
  6.  
  7. @NgModule({
  8. imports: [ RouterModule, ProjectRouteModule ],
  9. declarations: [ ComponentA ,ComponentB ]
  10. })
  11. export class ProjModule { }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement