Skip to content

Commit

Permalink
refactor: refactor imports
Browse files Browse the repository at this point in the history
  • Loading branch information
w0wka91 committed Aug 24, 2019
1 parent 28dff69 commit a295cf4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/DoczWrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ function DoczWrapper({ children }: Props) {
)
}

export default DoczWrapper
export { DoczWrapper }
2 changes: 1 addition & 1 deletion src/components/button/Button.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: Button
import { Playground } from 'docz'
import { Button } from './Button'
import ButtonWrapper from '../../docz-utils/ButtonWrapper'
import useToggle from '../../hooks/useToggle'
import { useToggle } from '../../hooks/useToggle'

# Button

Expand Down
2 changes: 1 addition & 1 deletion src/components/checkbox/Checkbox.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: Checkbox

import { Playground } from 'docz'
import { Checkbox } from './Checkbox'
import useToggle from '../../hooks/useToggle'
import { useToggle } from '../../hooks/useToggle'

# Checkbox

Expand Down
2 changes: 1 addition & 1 deletion src/components/radio/Radio.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: Radio

import { Playground } from 'docz'
import { Radio } from './Radio'
import useToggle from '../../hooks/useToggle'
import { useToggle } from '../../hooks/useToggle'

# Checkbox

Expand Down

0 comments on commit a295cf4

Please sign in to comment.