Import the modules
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { InViewportModule } from 'ng-in-viewport';
import { AppComponent } from './app.component';
@NgModule({
imports: [
BrowserModule,
InViewportModule
],
declarations: [AppComponent],
bootstrap: [AppComponent]
})
export class AppModule {}$ yarn add intersection-observer$ npm install --save intersection-observerimport 'intersection-observer';Last updated