0.0.2 • Published 4 years ago

ngx-read-time v0.0.2

Weekly downloads
8
License
-
Repository
-
Last release
4 years ago

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.