Best Practice
Destructuring
Most of hooks return an object of signals that you can use ES6's object destructure syntax on to take what you need. For example:
tsx
import { useToggle } from '@qwikgear/core';
const [state, toggle] = useToggle();
console.log(state);