Skip to content

Commit 8f09298

Browse files
authored
Merge pull request #5 from shivangimittal41/master
Compnents added.
2 parents adc1b60 + f009ee0 commit 8f09298

File tree

9 files changed

+851
-38
lines changed

9 files changed

+851
-38
lines changed

AngularApp/package-lock.json

Lines changed: 17 additions & 23 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

AngularApp/src/app/app.module.ts

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,14 @@ import { CoreModule } from './core/core.module';
88
import { HttpClientModule } from '@angular/common/http';
99
import { AuthService } from './services/auth.service';
1010
import { HttpModule, Http, BaseRequestOptions } from '@angular/http';
11-
11+
import { MatInputModule,
12+
MatSelectModule,
13+
MatButtonModule,
14+
MatStepperModule,
15+
MatAutocompleteModule,
16+
MatFormFieldModule,
17+
MatRippleModule } from '@angular/material';
18+
import { ReactiveFormsModule } from '@angular/forms';
1219

1320
// import { HeaderComponent } from "./Common/Header/Header.component";
1421
// import { FooterComponent } from "./Common/Footer/Footer.component";
@@ -28,7 +35,22 @@ import { HttpModule, Http, BaseRequestOptions } from '@angular/http';
2835
HttpModule,
2936
LazyLoadModule,
3037
CoreModule,
31-
BrowserAnimationsModule
38+
BrowserAnimationsModule,
39+
MatStepperModule,
40+
ReactiveFormsModule,
41+
MatInputModule,
42+
MatButtonModule,
43+
MatAutocompleteModule,
44+
MatSelectModule,
45+
MatStepperModule
46+
],
47+
exports: [
48+
MatButtonModule,
49+
MatFormFieldModule,
50+
MatInputModule,
51+
MatRippleModule,
52+
MatSelectModule,
53+
MatStepperModule
3254
],
3355
providers: [AuthService],
3456
bootstrap: [AppComponent]

0 commit comments

Comments
 (0)