| import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { AppComponent } from './app.component'; import { GridModule, SelectionService } from '@syncfusion/ej2-angular-grids'; @NgModule({ declarations: [AppComponent], imports: [ BrowserModule, GridModule ], providers: [SelectionService], bootstrap: [AppComponent] }) export class AppModule { } |