minor refactoring

pull/1/head
Chris Veilleux 2019-02-11 12:57:50 -06:00
parent 762746b3e8
commit 4bc31d16ae
1 changed files with 10 additions and 8 deletions

View File

@ -13,19 +13,19 @@ import {
MatToolbarModule
} from '@angular/material';
import { ProfileComponent } from './profile.component';
import { LoginComponent } from './login/login.component';
import { SubscriptionComponent } from './subscription/subscription.component';
import { DeleteComponent } from './delete/delete.component';
import { AgreementsComponent } from './agreements/agreements.component';
import { DeleteComponent } from './delete/delete.component';
import { LoginComponent } from './login/login.component';
import { ProfileComponent } from './profile.component';
import { SubscriptionComponent } from './subscription/subscription.component';
@NgModule({
declarations: [
ProfileComponent,
LoginComponent,
SubscriptionComponent,
AgreementsComponent,
DeleteComponent,
AgreementsComponent
LoginComponent,
ProfileComponent,
SubscriptionComponent
],
entryComponents: [
LoginComponent
@ -41,6 +41,8 @@ import { AgreementsComponent } from './agreements/agreements.component';
MatFormFieldModule,
MatInputModule,
MatToolbarModule
],
providers: [
]
})
export class ProfileModule { }