Skip to content

Commit

Permalink
docs(typography): untoggle sup/sub for headings for review
Browse files Browse the repository at this point in the history
  • Loading branch information
lzcabrera committed Sep 5, 2017
1 parent 09f8045 commit 32900fa
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions config/styleguide.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -163,22 +163,22 @@ module.exports = {
{
name: 'Text',
components() {
return compact([
toggle(path.resolve('src/components/Typography/Text/Text.jsx')),
toggle(path.resolve('src/components/Typography/Text/TextSup/TextSup.jsx')),
toggle(path.resolve('src/components/Typography/Text/TextSub/TextSub.jsx'))
])
return [
path.resolve('src/components/Typography/Text/Text.jsx'),
path.resolve('src/components/Typography/Text/TextSup/TextSup.jsx'),
path.resolve('src/components/Typography/Text/TextSub/TextSub.jsx')
]
}
},
{
name: 'Headings',
components() {
return compact([
toggle(path.resolve('src/components/Typography/DisplayHeading/DisplayHeading.jsx')),
toggle(path.resolve('src/components/Typography/Heading/Heading.jsx')),
toggle(path.resolve('src/components/Typography/Heading/HeadingSup/HeadingSup.jsx')),
toggle(path.resolve('src/components/Typography/Heading/HeadingSub/HeadingSub.jsx'))
])
return [
path.resolve('src/components/Typography/DisplayHeading/DisplayHeading.jsx'),
path.resolve('src/components/Typography/Heading/Heading.jsx'),
path.resolve('src/components/Typography/Heading/HeadingSup/HeadingSup.jsx'),
path.resolve('src/components/Typography/Heading/HeadingSub/HeadingSub.jsx')
]
}
}
]
Expand Down

0 comments on commit 32900fa

Please sign in to comment.