Add slider test component

old
Javi Velasco 2015-07-19 21:50:52 +02:00
parent 82ce479cee
commit ad1ae54d05
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
Slider = require '../../components/slider'
module.exports = React.createClass
render: ->
<section>
<h2>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 snaps value={1} min={0} max={10} step={1} editable />
</section>