15 lines
366 B
Plaintext
15 lines
366 B
Plaintext
|
|
<Typography id="non-linear-slider" gutterBottom>
|
||
|
|
Storage: {valueLabelFormat(calculateValue(value))}
|
||
|
|
</Typography>
|
||
|
|
<Slider
|
||
|
|
value={value}
|
||
|
|
min={5}
|
||
|
|
step={1}
|
||
|
|
max={30}
|
||
|
|
scale={calculateValue}
|
||
|
|
getAriaValueText={valueLabelFormat}
|
||
|
|
valueLabelFormat={valueLabelFormat}
|
||
|
|
onChange={handleChange}
|
||
|
|
valueLabelDisplay="auto"
|
||
|
|
aria-labelledby="non-linear-slider"
|
||
|
|
/>
|