-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.module.ts
More file actions
33 lines (31 loc) · 1.01 KB
/
app.module.ts
File metadata and controls
33 lines (31 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { ReactiveFormsModule, FormsModule } from '@angular/forms';
import { HttpClientModule } from '@angular/common/http';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { LoginComponent } from './login/login.component';
import { ManageKeysComponent } from './manage-keys/manage-keys.component';
import { CryptoComponent } from './crypto/crypto.component';
import { MaterialModule } from './common/material/material.module';
@NgModule({
declarations: [
AppComponent,
LoginComponent,
ManageKeysComponent,
CryptoComponent
],
imports: [
BrowserModule,
BrowserAnimationsModule,
ReactiveFormsModule,
FormsModule,
HttpClientModule,
AppRoutingModule,
MaterialModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }