Created
December 21, 2020 06:18
-
-
Save jayprajapati857/ac62bcc893b9a7bc19aa6a66db1e3b84 to your computer and use it in GitHub Desktop.
Revisions
-
jayprajapati857 created this gist
Dec 21, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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 { }