Using Solid Signals/Stores in React
I have an app with various frontends implemented in React. I'd like to switch to SolidJS for new frontend code (and eventually convert the old ones) but it's too big a lift to do all in one go, so I was going to try adpoting Solid incrementally. There is some logic that concerns state that is shared by all the frontends so as a first step I was thinking of converting that logic to use Solid signals/stores.
It seems like signals are an independent concept and implementation and could be used as a standalone state management system, but am I missing something?
It seems like signals are an independent concept and implementation and could be used as a standalone state management system, but am I missing something?

