You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/docs/providers.md
+2-4Lines changed: 2 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,16 +9,14 @@ import { HypergraphAppProvider } from "@graphprotocol/hypergraph-react";
9
9
10
10
const App = () => {
11
11
return (
12
-
<HypergraphAppProvidermapping={{}}>
12
+
<HypergraphAppProvider>
13
13
<YourApp />
14
14
</HypergraphAppProvider>
15
15
);
16
16
};
17
17
```
18
18
19
-
It has one mandatory prop: `mapping`. This is the mapping of your schema to the public Knowledge Graph schema. You can find more information about the mapping in the [Mapping](/docs/mapping) section later.
20
-
21
-
Further it has an optional prop: `syncServerUri`. This is the URL of the sync server. By default it is set to `https://sync.geobrowser.io`.
19
+
It has an optional prop: `syncServerUri`. This is the URL of the sync server. By default it is set to `https://sync.geobrowser.io`.
0 commit comments