ngx-read-time
v0.0.2
Published
## Usage
Downloads
8
Readme
NgxReadTime
Usage
npm i --save ngx-read-time
#OR
yarn add ngx-read-time -S
Add the module into your app.module.ts
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { NgxReadTimeModule } from 'projects/ngx-read-time/src/public-api';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
NgxReadTimeModule // <---- here
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
See the demo project for an example.