Skip to content

Instantly share code, notes, and snippets.

@brunokrebs
Last active March 2, 2017 14:14
Show Gist options
  • Save brunokrebs/4ec6398c6e1156e433f0c384c0fcdf48 to your computer and use it in GitHub Desktop.
Save brunokrebs/4ec6398c6e1156e433f0c384c0fcdf48 to your computer and use it in GitHub Desktop.
// ... 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