i got this error when i try to inject the service to my component
I created my service and decorated it with @Injectable()
I added my service to my app.module in providers
I tried to use the service in my component and inject it using the constructor
You forgot to add HttpModule
to imports
array
@NgModule({
imports: [
BrowserModule,
HttpModule,
...