Angular app for CAC desktop
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 

33 rindas
1.0 KiB

  1. import { NgModule } from '@angular/core';
  2. import { BrowserModule } from '@angular/platform-browser';
  3. import { AppRoutingModule } from './app-routing.module';
  4. import { AppComponent } from './app.component';
  5. import { LoginComponent } from './login/login.component';
  6. import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
  7. import { DashboardComponent } from './dashboard/dashboard.component';
  8. import { GraphComponent } from './dashboard/graph/graph.component';
  9. import { TableComponent } from './dashboard/table/table.component';
  10. import { ReportComponent } from './dashboard/report/report.component';
  11. import { SettingsComponent } from './dashboard/settings/settings.component';
  12. @NgModule({
  13. declarations: [
  14. AppComponent,
  15. LoginComponent,
  16. DashboardComponent,
  17. GraphComponent,
  18. TableComponent,
  19. ReportComponent,
  20. SettingsComponent
  21. ],
  22. imports: [
  23. BrowserModule,
  24. AppRoutingModule,
  25. BrowserAnimationsModule
  26. ],
  27. providers: [],
  28. bootstrap: [AppComponent]
  29. })
  30. export class AppModule { }