Skip to content

Commit

Permalink
revert(link): hide link components from sidebar
Browse files Browse the repository at this point in the history
  • Loading branch information
lzcabrera committed Aug 26, 2017
1 parent d54a779 commit 5e0a5ab
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
10 changes: 5 additions & 5 deletions config/styleguide.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,11 +137,11 @@ module.exports = {
{
name: 'Links',
components() {
return compact([
toggle(path.resolve('src/components/Link/Link.jsx')),
toggle(path.resolve('src/components/Link/ChevronLink/ChevronLink.jsx')),
toggle(path.resolve('src/components/Link/ButtonLink/ButtonLink.jsx'))
])
return [
path.resolve('src/components/Link/Link.jsx'),
path.resolve('src/components/Link/ChevronLink/ChevronLink.jsx'),
path.resolve('src/components/Link/ButtonLink/ButtonLink.jsx')
]
}
},
{
Expand Down
1 change: 1 addition & 0 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export { default as Card } from './old-components/Card/Card'
export { default as ExpandCollapse } from './old-components/ExpandCollapse/ExpandCollapse'
export { default as Grid } from './old-components/Grid/Grid'
export { default as Icon } from './old-components/Icon/Icon'
export { default as Link } from './components/Link/Link'
export { default as Notification } from './old-components/Notification/Notification'
export { default as SelectorCounter } from './old-components/SelectorCounter/SelectorCounter'
export { default as Spinner } from './old-components/Spinner/Spinner'
Expand Down

0 comments on commit 5e0a5ab

Please sign in to comment.