Last active
March 2, 2017 14:14
-
-
Save brunokrebs/4ec6398c6e1156e433f0c384c0fcdf48 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ... other imports | |
import { AuthService } from './auth.service'; | |
import { MaterialModule } from '@angular/material'; | |
@NgModule({ | |
// ... other properties | |
imports: [ | |
// ... other imports | |
MaterialModule.forRoot(), | |
], | |
providers: [ AuthService ], | |
// ... other properties | |
}) | |
export class AppModule { } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment