forked from drteresavasquez/react-app-style-guid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyleguide.config.js
40 lines (39 loc) · 967 Bytes
/
styleguide.config.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
module.exports = {
components: 'src/components/**/*.js',
theme: {
color: {
link: 'firebrick',
linkHover: 'salmon'
},
fontFamily: {
base: '"Arial"'
}
}
};
// module.exports = {
// sections: [
// {
// name: 'Introduction',
// content: 'docs/introduction.md'
// },
// // {
// // name: 'Documentation',
// // sections: [
// // {
// // name: 'Installation',
// // content: 'docs/installation.md',
// // description: 'The description for the installation section'
// // },
// // {
// // name: 'Configuration',
// // content: 'docs/configuration.md'
// // }
// // ]
// // },
// {
// name: 'UI Components',
// content: 'docs/ui.md',
// components: 'src/components/**/*.js'
// }
// ]
// }