forked from re-rxjs/react-rxjs.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebars.js
46 lines (46 loc) · 1.19 KB
/
sidebars.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
module.exports = {
someSidebar: {
Introduction: ["motivation", "core-concepts", "getting-started"],
Tutorial: ["tutorial/github-issues", "tutorial/todos"],
"API Reference": [
{
type: "category",
label: "Core",
items: [
"api/core/bind",
"api/core/state",
"api/core/useStateObservable",
"api/core/shareLatest",
"api/core/suspense",
"api/core/subscribe",
"api/core/StateObservable",
],
},
{
type: "category",
label: "Utils",
items: [
"api/utils/combineKeys",
"api/utils/contextBinder",
"api/utils/createSignal",
"api/utils/createKeyedSignal",
"api/utils/mergeWithKey",
"api/utils/partitionByKey",
"api/utils/selfDependant",
"api/utils/suspend",
"api/utils/suspended",
"api/utils/switchMapSuspended",
{
type: "category",
label: "Deprecated",
items: [
"api/utils/split",
"api/utils/collect",
"api/utils/collectValues",
],
},
],
},
],
},
}