session.module.ts
1.23 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
34
35
36
37
38
39
import { NgModule } from '@angular/core';
import { RouterModule } from '@angular/router';
import { CommonModule } from '@angular/common';
import { MatIconModule, MatCardModule, MatInputModule, MatCheckboxModule, MatButtonModule } from '@angular/material';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { FlexLayoutModule } from '@angular/flex-layout';
import { SessionRoutes } from './session.routing';
import { NotFoundComponent } from './not-found/not-found.component';
import { ErrorComponent } from './error/error.component';
import { ForgotComponent } from './forgot/forgot.component';
import { LockscreenComponent } from './lockscreen/lockscreen.component';
import { SigninComponent } from './signin/signin.component';
import { SignupComponent } from './signup/signup.component';
@NgModule({
imports: [
CommonModule,
RouterModule.forChild(SessionRoutes),
MatIconModule,
MatCardModule,
MatInputModule,
MatCheckboxModule,
MatButtonModule,
FlexLayoutModule,
FormsModule,
ReactiveFormsModule
],
declarations: [
NotFoundComponent,
ErrorComponent,
ForgotComponent,
LockscreenComponent,
SigninComponent,
SignupComponent
]
})
export class SessionModule {}