Importing FTable - fairmutex/FTable GitHub Wiki

Add "ftable": "^x.x.xx" to your package.json

npm install

Import FTables in your app.module.ts or inside the module that will make use of FTable

import { FTableModule } from 'ftable';

Add FTableModule to your imports:[]

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { FTableModule } from 'ftable';
  
@NgModule({
declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    FTableModule
  ],
})
export class AppModule { }