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

除非另有说明,本项目采用知识共享署名 4.0 国际许可协议进行许可,代码示例采用 Apache License 2.0 许可协议进行许可。