console.log 삭제

This commit is contained in:
yjnoh 2024-07-02 16:27:44 +09:00
parent d7f32a5f14
commit cea2ecf9ef

View File

@ -4,7 +4,7 @@ export default function RangeSlider(
const { title, initValue, onchange, step, min, max } = props
const handleChange = (e) => {
console.log(e.target.value)
// console.log(e.target.value)
onchange(e.target.value)
}