New to Kendo UI for Angular? Start a free 30-day trial
DragAndDropModule
Represents the NgModule
definition for the Drag and Drop directives.
ts
import { DragAndDropModule } from '@progress/kendo-angular-utils';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
@NgModule({
declarations: [AppComponent],
imports: [BrowserModule, DragAndDropModule],
bootstrap: [AppComponent]
})
export class AppModule {}