I\'ve got a problem loading a class into an Angular component. I\'ve been trying to solve it for a long time; I\'ve even tried joining it all in a single file. What I have i
Angular2 requires you to declare all the injectables in bootstrap function call. Without this your service is not an injectable object.
bootstrap(MyAppComponent,[NameService]);