Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. @NgModule({
  2. declarations: [ ... ,
  3. CalendarComponent,
  4. ],
  5. imports: [ ... ,
  6. TestModule,
  7. ],
  8. exports: [ ...
  9. CalendarComponent,
  10. ],
  11. providers: [ ... ],
  12. bootstrap: [AppComponent]
  13. })
  14.  
  15. @NgModule({
  16. declarations: [ ... ,
  17. TestComponent
  18. ],
  19. imports: [ ... ],
  20. exports: [ ... ],
  21. providers: [ ... ]
  22. })
  23.  
  24. <app-calendar></app-calendar>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement