import { ProgressBar } from 'lvlgjs-ui'
import { useState } from 'react'
function Component () {
const [value, setValue] = useState(false)
return (
<ProgressBar
style={style.progressBar}
range={[0, 50]}
value={30}
/>
)
}
const style = {
progressBar: {},
}
test/progressbar