diff options
Diffstat (limited to 'client/src/app/signup/signup.module.ts')
-rw-r--r-- | client/src/app/signup/signup.module.ts | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/client/src/app/signup/signup.module.ts b/client/src/app/signup/signup.module.ts index 61560ddcf..fccaf7ce1 100644 --- a/client/src/app/signup/signup.module.ts +++ b/client/src/app/signup/signup.module.ts | |||
@@ -1,17 +1,26 @@ | |||
1 | import { NgModule } from '@angular/core' | 1 | import { NgModule } from '@angular/core' |
2 | |||
3 | import { SignupRoutingModule } from './signup-routing.module' | 2 | import { SignupRoutingModule } from './signup-routing.module' |
4 | import { SignupComponent } from './signup.component' | 3 | import { SignupComponent } from './signup.component' |
5 | import { SharedModule } from '../shared' | 4 | import { SharedModule } from '../shared' |
5 | import { CdkStepperModule } from '@angular/cdk/stepper' | ||
6 | import { SignupStepChannelComponent } from '@app/signup/signup-step-channel.component' | ||
7 | import { SignupStepUserComponent } from '@app/signup/signup-step-user.component' | ||
8 | import { CustomStepperComponent } from '@app/signup/custom-stepper.component' | ||
9 | import { SuccessComponent } from '@app/signup/success.component' | ||
6 | 10 | ||
7 | @NgModule({ | 11 | @NgModule({ |
8 | imports: [ | 12 | imports: [ |
9 | SignupRoutingModule, | 13 | SignupRoutingModule, |
10 | SharedModule | 14 | SharedModule, |
15 | CdkStepperModule | ||
11 | ], | 16 | ], |
12 | 17 | ||
13 | declarations: [ | 18 | declarations: [ |
14 | SignupComponent | 19 | SignupComponent, |
20 | CustomStepperComponent, | ||
21 | SuccessComponent, | ||
22 | SignupStepChannelComponent, | ||
23 | SignupStepUserComponent | ||
15 | ], | 24 | ], |
16 | 25 | ||
17 | exports: [ | 26 | exports: [ |