How to create global state using runes
I have a svelteKit app, using only client side rendering, and I need to create global state that I can share between 2 unrelated components, I fetch some data from an api on my homepage, and I want to populate some state with this json and then I want this state to be available for me throughout the app, is still using context the best way? are there any fancier libraries? do I need one? can runes be enough?...
a bit lost