aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/+signup/+register/register.module.ts
blob: 52cdb33bcbb97c93bfe3deb9ea58f82182ddb373 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                       
                                        
                                                                             
                                                                  
                                                                   
                                                                 
                                                                                
                                                                            
                                                                          
                                                        



                          
 
                     
 
                       

                        





                                 
                               










                               
import { CdkStepperModule } from '@angular/cdk/stepper'
import { NgModule } from '@angular/core'
import { SharedSignupModule } from '@app/+signup/shared/shared-signup.module'
import { SharedInstanceModule } from '@app/shared/shared-instance'
import { CustomStepperComponent } from './custom-stepper.component'
import { RegisterRoutingModule } from './register-routing.module'
import { RegisterStepChannelComponent } from './register-step-channel.component'
import { RegisterStepTermsComponent } from './register-step-terms.component'
import { RegisterStepUserComponent } from './register-step-user.component'
import { RegisterComponent } from './register.component'

@NgModule({
  imports: [
    RegisterRoutingModule,

    CdkStepperModule,

    SharedSignupModule,

    SharedInstanceModule
  ],

  declarations: [
    RegisterComponent,
    CustomStepperComponent,
    RegisterStepChannelComponent,
    RegisterStepTermsComponent,
    RegisterStepUserComponent
  ],

  exports: [
    RegisterComponent
  ],

  providers: [
  ]
})
export class RegisterModule { }