In solid-js, what is the benefit of using context, when we can create a signal and import it's getter/setter/even a memoized value from a store global store-like file?:
// ./store/myValue.js
export const [value, setValue] = createSignal('');
To my understanding it is totally ok to import this value
in multiple components and the reactivity would be maintained throughout those.
The only use-case of the store/global that I can think of, is if your state grows to such a complexity, that you need a more structured context-like approach to improve maintainability, readability etc.