Functions

browser

state

sensors

utilities

  • useDebounce

    Used to debounce a quickly changing value. Will return the latest value after a specified amount of time.

lifecycle

  • useEffectAfterMount

    A useEffect hook that does not run on mount, but only on subsequent updates

  • useMount

    Run a function when a component is mounted.

  • useMountSync

    Run a function synchronously when a component is mounted but after DOM is painted.

  • useUnMount

    Run a function when component is unmounted.

shared

  • utils

    Common utils and helpers.