react-toolbox/spec/components/slider.cjsx

18 lines
448 B
CoffeeScript

Slider = require '../../components/slider'
module.exports = React.createClass
test: ->
marginTop: "1rem"
render: ->
<section>
<h2 style={@test()}>Sliders</h2>
<p>Normal slider</p>
<Slider />
<p>With steps, initial value and editable</p>
<Slider value={5} min={0} max={10} editable />
<p>Pinned and with snaps</p>
<Slider pinned value={1} min={0} max={10} step={1} editable />
</section>