aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/signup/signup.module.ts
blob: acb7e55155691afc214ed76ddf50da99148d78d7 (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 { }