Advertisement
Guest User

Untitled

a guest
Sep 15th, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
  2. import { RouterModule } from '@angular/router';
  3.  
  4. @NgModule({
  5. imports: [
  6. RouterModule.forChild([
  7. {
  8. path: 'user-extra',
  9. loadChildren: () => import('./user-extra/user-extra.module').then(m => m.GameSalonUserExtraModule)
  10. }
  11. /* jhipster-needle-add-entity-route - JHipster will add entity modules routes here */
  12. ])
  13. ],
  14. declarations: [],
  15. entryComponents: [],
  16. providers: [],
  17. schemas: [CUSTOM_ELEMENTS_SCHEMA]
  18. })
  19. export class GameSalonEntityModule {}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement