Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. @NgModule({
  2. imports: [
  3. BrowserModule,
  4. FormsModule,
  5. ],
  6. declarations: [
  7. test,
  8. ],
  9. bootstrap: [ AppComponent ],
  10. providers: [
  11. userService
  12. ]
  13. })
  14. export class AppModule { }
  15.  
  16. export class TestComponent implements OnInit, OnDestroy {
  17. constructor(public user: userService)
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement