-
Notifications
You must be signed in to change notification settings - Fork 159
Expand file tree
/
Copy pathdoczrc.js
More file actions
33 lines (33 loc) · 734 Bytes
/
doczrc.js
File metadata and controls
33 lines (33 loc) · 734 Bytes
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
export default {
title: 'Hooks Cheatsheet',
description: 'Cheatsheet for React Hooks',
repository: 'https://github.com/ohansemmanuel/react-hooks-cheatsheet',
indexHtml: 'src/index.html',
menu: [
'Home',
'useState',
'useEffect',
'useContext',
'useLayoutEffect',
'useReducer',
'useCallback',
'useMemo',
'useRef',
'useDebugValue',
'Examples'
],
wrapper: 'src/docs/config/Wrapper.js',
ordering: 'ascending',
propsParser: false,
themeConfig: {
repository: 'https://github.com/ohansemmanuel/react-hooks-cheatsheet',
colors: {
primary: '#bd4932',
link: '#bd4932'
},
logo: {
src: 'https://i.imgur.com/kEyxJoQ.png',
width: 200
}
}
}