Reactium SDK
The Reactium SDK is imported from the ES Module, and provides useful means of extending and using the Reactium foundational framework.
Reactium SDK
When we speak of the "Reactium SDK", we are generally referring to:
the Reactium Singleton object, imported like so:
import Reactium from 'reactium-core/sdk';
or, a number of named exports, such as custom React hooks, string translation utilities, etc, e.g.
import { useHookComponent } from 'reactium-core/sdk';
A list of documented Reactium "hooks". A Reactium hook (not to be confused with React Hooks), is a named tag for which you can register callbacks. You can both register hooks in your code to run when important things happen in Reactium, and create your own invocations where others can register callbacks.
Last updated