Solid uses the "use" prefix for some of it's stuff, including useLocation or useMatch
"use" is used in react to communicate that a function is a hook, and can only be used at the top-level of a component to manage state / trigger rerenders.
if use was supposed to signify something as reactive, signals and memos should using it, but they don't.
so what does this even mean in the case of solid?
as a side note, I do think that similar to how svelte uses $ to note something as reactive, solid is missing some easily scannable syntax to find which functions or signals are reactive and are treated specially.