Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>PrimengQuickstartCli</title>
  6. <base href="pilot/"/>
  7.  
  8. <meta name="viewport" content="width=device-width, initial-scale=1">
  9. <link rel="icon" type="image/x-icon" href="favicon.ico">
  10. </head>
  11. <body>
  12. <app-root>Loading...</app-root>
  13. </body>
  14. </html>
  15.  
  16. import { BrowserModule } from '@angular/platform-browser';
  17. import { NgModule } from '@angular/core';
  18. import { FormsModule, ReactiveFormsModule } from '@angular/forms';
  19. import { HttpModule } from '@angular/http';
  20.  
  21. import { AppComponent } from './app.component';
  22.  
  23. import { MessagesModule } from 'primeng/primeng';
  24. import { InputTextModule } from 'primeng/primeng';
  25. import { PasswordModule } from 'primeng/primeng';
  26. import { ButtonModule } from 'primeng/primeng';
  27. import { DataTableModule, SharedModule } from 'primeng/primeng';
  28. import { DialogModule } from 'primeng/primeng';
  29.  
  30. import { CarService } from './service/carservice';
  31.  
  32. @NgModule({
  33. declarations: [
  34. AppComponent
  35. ],
  36. imports: [
  37. BrowserModule,
  38. FormsModule,
  39. HttpModule,
  40. ButtonModule,
  41. MessagesModule,
  42. InputTextModule,
  43. PasswordModule,
  44. ReactiveFormsModule,
  45. DataTableModule,
  46. SharedModule,
  47. DialogModule
  48. ],
  49. providers: [CarService],
  50. bootstrap: [AppComponent]
  51. })
  52. export class AppModule { }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement