Function RealmProvider

  • 使用 Realm 钩子包装任何组件所需的提供商组件。

    参数

    • props : ProviderProps

      此 Realm 的Realm.Configuration作为属性传递。 默认情况下,这是 Realm 的主要配置。

    • Optional context :任何

    返回null | ReactElement < any , any >

    例子

    const AppRoot = () => {
    const syncConfig = {
    flexible: true,
    user: currentUser
    };

    return (
    <RealmProvider schema={[Task, User]} path={"data.realm"} sync={syncConfig}>
    <App/>
    </RealmProvider>
    )
    }

属性

上下文类型?: ValidationMap<any>
默认属性?: 部分<ProviderProps>
显示名称?: 字符串
prop 类型?: WeakValidationMap<ProviderProps>

使用TypeDoc生成