@lynx-js/react / useGlobalPropsChanged

Function: useGlobalPropsChanged()

function useGlobalPropsChanged(callback: (data: GlobalProps) => void): void

A React Hooks for you to get notified when __globalProps changed.

Parameters

ParameterType
callback(data: GlobalProps) => void

Returns

void

Example

function App() {
  useGlobalPropsChanged((data) => {
    lynx.__globalProps.someProperty // can use lynx.__globalProps
    data.someProperty // can use data
  })
}

Defined in

@lynx-js/react/runtime/lib/lynx-api.d.ts:207

Except as otherwise noted, this work is licensed under a Creative Commons Attribution 4.0 International License, and code samples are licensed under the Apache License 2.0.