-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathsidebars.js
45 lines (45 loc) · 1.07 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
module.exports = {
someSidebar: {
'Main concepts': [
'main-concepts/components',
'main-concepts/elements',
'main-concepts/style-rules',
],
'Getting started': [
'getting-started/installation',
{
type: 'link',
label: 'Examples 💡', // string - the label that should be displayed.
href: '/muuri-react/showcase', // string - the target URL.
},
],
Usage: [
'usage/items',
'usage/drag-and-drop',
'usage/items-data',
'usage/filtering',
'usage/sorting',
'usage/hooks',
'usage/reparenting',
'usage/items-dimensions',
'usage/responsive-style',
'usage/server-side-rendering',
'usage/muuri',
],
Hooks: [
'hooks/useData',
'hooks/useDrag',
'hooks/useDraggable',
'hooks/useGrid',
'hooks/useRefresh',
'hooks/useShow',
'hooks/useVisibility',
],
'API reference': [
'api-reference/muuricomponent',
'api-reference/hooks',
'api-reference/utilities',
'api-reference/muuri',
],
},
};