LabelModule
Class
Represents the NgModule definition for the Label component.
The module imports:
LabelDirectiveLabelComponentFloatingLabel
Definition
Package:@progress/kendo-angular-label
Syntax:
ts
import { LabelModule } from '@progress/kendo-angular-label';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
@NgModule({
declarations: [AppComponent],
imports: [BrowserModule, LabelModule],
bootstrap: [AppComponent]
})
export class AppModule {}