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