Skip to content

Commit

Permalink
[#459] Chore: 디버깅용 코드 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
giwan-dev committed Feb 10, 2020
1 parent 675972d commit 10cd307
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/stories/slider.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ storiesOf('Slider', module)
const [value, setValue] = useState(500000)

return (
<div style={{ height: '4000px', padding: '500px 20px 0 20px' }}>
<div>
컴포넌트 외부: {value}
<SingleSlider
initialValue={value}
Expand All @@ -39,7 +39,7 @@ storiesOf('Slider', module)
const [value, setValue] = useState(500000)

return (
<div style={{ height: '4000px', padding: '500px 20px 0 20px' }}>
<div>
컴포넌트 외부: {value}
<SingleSlider
initialValue={value}
Expand All @@ -56,7 +56,7 @@ storiesOf('Slider', module)
const [values, setValues] = useState([0, 500000])

return (
<div style={{ height: '4000px', padding: '500px 20px 0 20px' }}>
<div>
컴포넌트 외부: {values.join(', ')}
<RangeSlider
initialValues={values}
Expand All @@ -72,7 +72,7 @@ storiesOf('Slider', module)
const [values, setValues] = useState([0, 500000])

return (
<div style={{ height: '4000px', padding: '500px 20px 0 20px' }}>
<div>
컴포넌트 외부: {values.join(', ')}
<RangeSlider
initialValues={values}
Expand Down

0 comments on commit 10cd307

Please sign in to comment.