New to Kendo UI for Angular? Start a free 30-day trial
SortableModule
Represents the NgModule
definition for the Sortable component.
ts
import { NgModule } from '@angular/core';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
// Import the Sortable module
import { SortableModule } from '@progress/kendo-angular-sortable';
// Import the app component
import { AppComponent } from './app.component';
// Define the app module
@NgModule({
declarations: [AppComponent],
imports: [BrowserModule, SortableModule],
bootstrap: [AppComponent]
})
export class AppModule {}
// Compile and launch the module
platformBrowserDynamic().bootstrapModule(AppModule);