1 min readMar 27, 2019
Did you properly import the service provider into your App.module.ts’ providers array and the app.component.ts' constructor?
You have to make sure that the import is happening at the top of your file. It should look something like this:
import { TabsService } from './core/tabs.service';
And then you follow the article for the rest of the steps to make sure that you imported it in the correct places.