39 lines
1.3 KiB
TypeScript
39 lines
1.3 KiB
TypeScript
import { BrowserModule } from '@angular/platform-browser';
|
|
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
|
import { NgModule, enableProdMode } from '@angular/core';
|
|
import { HttpClientModule } from '@angular/common/http';
|
|
|
|
import { AppRoutingModule } from './app-routing.module';
|
|
import { AppComponent } from './app.component';
|
|
import { MainPageComponent } from './main-page/main-page.component';
|
|
import { HelpPageComponent } from './help-page/help-page.component';
|
|
import { UploadPageComponent } from './upload-page/upload-page.component';
|
|
import { VisualizationPageComponent } from './visualization-page/visualization-page.component';
|
|
|
|
import {MatSelectModule} from '@angular/material/select';
|
|
import {MatFormFieldModule, MatInputModule} from '@angular/material';
|
|
import { YAxisRangeComponent } from './y-axis-range/y-axis-range.component';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
AppComponent,
|
|
MainPageComponent,
|
|
HelpPageComponent,
|
|
UploadPageComponent,
|
|
VisualizationPageComponent,
|
|
YAxisRangeComponent,
|
|
],
|
|
imports: [
|
|
BrowserModule,
|
|
AppRoutingModule,
|
|
MatSelectModule,MatFormFieldModule, MatInputModule,
|
|
BrowserAnimationsModule,
|
|
HttpClientModule
|
|
],
|
|
providers: [],
|
|
bootstrap: [AppComponent]
|
|
})
|
|
export class AppModule { }
|
|
|
|
enableProdMode()
|