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 MatToolbarModule
} from '@angular/material'; } 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 { 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({ @NgModule({
declarations: [ declarations: [
ProfileComponent, AgreementsComponent,
LoginComponent,
SubscriptionComponent,
DeleteComponent, DeleteComponent,
AgreementsComponent LoginComponent,
ProfileComponent,
SubscriptionComponent
], ],
entryComponents: [ entryComponents: [
LoginComponent LoginComponent
@ -41,6 +41,8 @@ import { AgreementsComponent } from './agreements/agreements.component';
MatFormFieldModule, MatFormFieldModule,
MatInputModule, MatInputModule,
MatToolbarModule MatToolbarModule
],
providers: [
] ]
}) })
export class ProfileModule { } export class ProfileModule { }