Skip to content

Instantly share code, notes, and snippets.

@jayprajapati857
Created December 21, 2020 06:18
Show Gist options
  • Select an option

  • Save jayprajapati857/ac62bcc893b9a7bc19aa6a66db1e3b84 to your computer and use it in GitHub Desktop.

Select an option

Save jayprajapati857/ac62bcc893b9a7bc19aa6a66db1e3b84 to your computer and use it in GitHub Desktop.

Revisions

  1. jayprajapati857 created this gist Dec 21, 2020.
    22 changes: 22 additions & 0 deletions app.module.ts
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,22 @@
    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 { }