Skip to content

Instantly share code, notes, and snippets.

@zainzafar90
Created October 21, 2018 07:52
Show Gist options
  • Save zainzafar90/70dce2ecd1aeab7e50b54daaa5df50c7 to your computer and use it in GitHub Desktop.
Save zainzafar90/70dce2ecd1aeab7e50b54daaa5df50c7 to your computer and use it in GitHub Desktop.
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { ScrollingModule } from '@angular/cdk/scrolling';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
ScrollingModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment