@kayelaa/canvas API - v0.2.15
    Preparing search index...

    Function useUsing

    • This function is NOT a joke.

      "use" will execute the fiber's use mechanism (useEffect, useInitialization, etc) without triggering a full rerender.

      "unuse" will temporarily force a fiber to get removed as if it didn't exist next render.

      This hook MUST be called at the top level of a component function — never inside loops, conditions, nested functions, or callbacks.** The call order of all hooks is strictly fixed across every refresh; reordering calls will corrupt internal state.

      Parameters

      • type: "use" | "unuse"

      Returns void