Angular web app for entering Techblox commands
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
1023B

  1. import { BrowserModule } from '@angular/platform-browser';
  2. import { NgModule } from '@angular/core';
  3. import { AppComponent } from './app.component';
  4. import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
  5. import { MatCardModule } from '@angular/material/card';
  6. import { FlexLayoutModule } from '@angular/flex-layout';
  7. import { MatInputModule } from '@angular/material/input';
  8. import { FormsModule, ReactiveFormsModule } from '@angular/forms';
  9. import { MatButtonModule } from '@angular/material/button';
  10. import { HttpClientModule } from '@angular/common/http';
  11. import { MatAutocompleteModule } from '@angular/material/autocomplete';
  12. @NgModule({
  13. declarations: [
  14. AppComponent
  15. ],
  16. imports: [
  17. BrowserModule,
  18. BrowserAnimationsModule,
  19. MatCardModule,
  20. FlexLayoutModule,
  21. MatInputModule,
  22. FormsModule,
  23. MatButtonModule,
  24. HttpClientModule,
  25. MatAutocompleteModule,
  26. ReactiveFormsModule
  27. ],
  28. providers: [],
  29. bootstrap: [AppComponent]
  30. })
  31. export class AppModule { }