react / InitDataProvider

Function: InitDataProvider()

function InitDataProvider(props: object, deprecatedLegacyContext?: any): null | ReactElement<any, any>

The Provider Component that provide initData, you must wrap your JSX inside it

Parameters

Parameter Type Description
props object -
props.children? ReactNode -
deprecatedLegacyContext? any Deprecated See React Docs

Returns

null | ReactElement<any, any>

Example

import { root } from "@lynx-js/react"

function App() {
  return (
    <InitDataConsumer children={(initData) => <view>...</view>}/>
  )
}

root.render(
  <InitDataProvider>
     <App/>
  </InitDataProvider>
);

Defined in

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

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.