Skip to content

Instantly share code, notes, and snippets.

@jayprajapati857
Created December 21, 2020 06:18
Show Gist options
  • Save jayprajapati857/ac62bcc893b9a7bc19aa6a66db1e3b84 to your computer and use it in GitHub Desktop.
Save jayprajapati857/ac62bcc893b9a7bc19aa6a66db1e3b84 to your computer and use it in GitHub Desktop.
ngx-uploader-directive app module sample
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { NgxUploaderDirectiveModule } from 'ngx-uploader-directive';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
AppRoutingModule,
FormsModule,
NgxUploaderDirectiveModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment