I think there is no need to have the injector in the skeleton since React already has a better alternative: React.createContext.
Using the injector only leads to bad programming, since you are using a 'global' space to store important objects. And if you are using TypeScript, you will lose the typing too.
I think there is no need to have the injector in the skeleton since React already has a better alternative:
React.createContext.Using the injector only leads to bad programming, since you are using a 'global' space to store important objects. And if you are using TypeScript, you will lose the typing too.