import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { AppComponent } from './app.component'; import { YodDataTableModule } from './yod-data-table/yod-data-table.module'; @NgModule({ declarations: [ AppComponent ], imports: [ BrowserModule ], exports: [YodDataTableModule], providers: [], bootstrap: [AppComponent] }) export class AppModule { }