Skip to content

Instantly share code, notes, and snippets.

@bobbyg603
Created August 2, 2022 12:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bobbyg603/dbad3f8df36d6b30cd9f73c54f4be356 to your computer and use it in GitHub Desktop.
Save bobbyg603/dbad3f8df36d6b30cd9f73c54f4be356 to your computer and use it in GitHub Desktop.
File Uploads with Angular and RxJS
+import { HttpClientModule } from '@angular/common/http';
@NgModule({
declarations: [
AppComponent,
FilesComponent
],
imports: [
BrowserModule,
+ HttpClientModule
],
bootstrap: [AppComponent]
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment