For the complete documentation index, see llms.txt. This page is also available as Markdown.

Customization

The Reactium Toolkit can be customized to fit your design aesthetic and extended to add new functionality.

You can replace the logo by registering a component with an ID of RTKLOGO

/CustomLogo/reactium-hooks.js
import CustomLogo from '.';
import Reactium from 'reactium-core/sdk'; 

Reactium.Plugin.register('CustomLogo').then(() => {

    // Ensure the toolkit plugin is available
    if (!Reactium.Toolkit) return;
    
    // Replace Logo on plugin-ready
    Reactium.Hook.register('plugin-ready', () => {
        Reactium.Component.register('RTKLOGO', CustomLogo);
    });
});

Brand Name

You can replace the default brand name by registering a configuration hook and setting the brand property to your custom component or string.

Version Info

You can replace the default version info by registering a configuration hook and setting the info property to your custom component or string.

Last updated