BoldDeskBoldDesk is now live on Product Hunt with a special offer: 50% off all plans. Let's grow together! Support us.
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { NumericTextBoxModule } from '@syncfusion/ej2-angular-inputs';
import { AppComponent } from './app.component';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
NumericTextBoxModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
|