Skip to content
This repository has been archived by the owner on Jan 25, 2023. It is now read-only.

Latest commit

 

History

History
20 lines (17 loc) · 245 Bytes

Slider.md

File metadata and controls

20 lines (17 loc) · 245 Bytes

Slider

import {Slider} from 'rea11y';

function handleChange(values) {}
function makeText({value}) {
	return value;
}

<Slider
	min={0}
	max={100}
	values={[42]}
	step={1}
	bigStep={10}
	text={makeText}
	onChange={handleChange}
/>