aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/+login/login.module.ts
blob: 9d8607e5d85e6a4d7e23616350a9f16a43a09c41 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                                        

                                                                 
                                                                  
                                                          

                                                           



                       


                     


                           













                            
import { NgModule } from '@angular/core'
import { SharedFormModule } from '@app/shared/shared-forms'
import { SharedGlobalIconModule } from '@app/shared/shared-icons'
import { SharedInstanceModule } from '@app/shared/shared-instance'
import { SharedMainModule } from '@app/shared/shared-main'
import { LoginRoutingModule } from './login-routing.module'
import { LoginComponent } from './login.component'

@NgModule({
  imports: [
    LoginRoutingModule,

    SharedMainModule,
    SharedFormModule,
    SharedGlobalIconModule,

    SharedInstanceModule
  ],

  declarations: [
    LoginComponent
  ],

  exports: [
    LoginComponent
  ],

  providers: [
  ]
})
export class LoginModule { }