-
Notifications
You must be signed in to change notification settings - Fork 4
/
doczrc.js
50 lines (50 loc) · 1.35 KB
/
doczrc.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
47
48
49
50
export default {
title: 'Reselect Utils',
description: 'A collection of helpers and utilities for selectors',
base: '/reselect-utils/docz/',
ignore: ['README.md', 'packages/**', 'docs/api/*'],
typescript: true,
themeConfig: {
mode: 'light',
},
menu: [
{ name: 'Introduction' },
{ name: 'Quick Start' },
{
name: 'Guides',
menu: [
{ name: 'Path & Prop Selectors' },
{ name: 'Bound & Adapted Selectors' },
{ name: 'Structured & Sequence Selectors' },
{ name: 'Chain & Empty Selectors' },
{ name: 'Composing Key Selector Creator' },
],
},
{
name: 'Graphs',
menu: [
{ name: 'Path Selector' },
{ name: 'Bound Selector' },
{ name: 'Adapted Selector' },
{ name: 'Chain Selector' },
],
},
{
name: 'API',
menu: [
{ name: 'Path Selector' },
{ name: 'Prop Selector' },
{ name: 'Bound Selector' },
{ name: 'Empty Selector' },
{ name: 'Adapted Selector' },
{ name: 'Structured Selector' },
{ name: 'Cached Structured Selector' },
{ name: 'Sequence Selector' },
{ name: 'Cached Sequence Selector' },
{ name: 'Chain Selector' },
{ name: 'Composing Key Selector Creator' },
{ name: 'Compose Key Selectors' },
],
},
],
};