Basically i am looking to cache some values at a component level, but don't want the component to re-render when i set it.
Is there a react's useRef hook equivalent in qwik ?
I did see "ref" in docs (https://qwik.builder.io/docs/components/overview/#storing-a-reference), but it was more around storing a "reference" to a component/dom element.
In react, useRef can be used to do both.
If i missed any docs, please let me know. Any help is really appreciated.