import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { AppRoutingModule } from './app-routing.module'; import { AppComponent } from './app.component'; import { MaterialTableModule} from 'orange-bees-angular-material-table/projects/material-table/src/public-api' @NgModule({ declarations: [ AppComponent ], imports: [ BrowserModule, AppRoutingModule, MaterialTableModule, BrowserAnimationsModule, MaterialTableModule ], providers: [], bootstrap: [AppComponent] }) export class AppModule { }