Member Junction
    Preparing search index...

    Props passed to React components

    interface ComponentProps {
        callbacks: any;
        components?: Record<string, any>;
        data: any;
        onStateChanged?: (stateUpdate: Record<string, any>) => void;
        styles?: ComponentStyles;
        userState: any;
        utilities: any;
    }
    Index

    Properties

    callbacks: any

    Callback functions

    components?: Record<string, any>

    Child components available for use

    data: any

    Data object for the component

    onStateChanged?: (stateUpdate: Record<string, any>) => void

    Standard state change handler for controlled components

    Component styles

    userState: any

    User-managed state

    utilities: any

    Utility functions available to the component