aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/signup/signup.module.ts
blob: 61560ddcfdf03b69205c8c7ae58c4d5f4aae698c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import { NgModule } from '@angular/core'

import { SignupRoutingModule } from './signup-routing.module'
import { SignupComponent } from './signup.component'
import { SharedModule } from '../shared'

@NgModule({
  imports: [
    SignupRoutingModule,
    SharedModule
  ],

  declarations: [
    SignupComponent
  ],

  exports: [
    SignupComponent
  ],

  providers: [
  ]
})
export class SignupModule { }