UMEC / healthcare-workforce

A repository for healthcare workforce modelling.
BSD 2-Clause "Simplified" License
2 stars 3 forks source link

Slider, Accordion component #181

Closed dominicpanarello closed 6 years ago

dominicpanarello commented 6 years ago

Example use:

<Slider id="alcoholMisuseSlider" min="5" max="50" default="50" step="10" />
<Slider id="autismSlider" min="0" max="10" default="5" step="1" />
dominicpanarello commented 6 years ago

Example use:


      {
        key: 'mykey1',
        title: 'mytitle1',
        value: <div>Hey there1</div>
      },
      {
        key: 'mykey2',
        title: 'mytitle2',
        value: <div>Hey there2</div>
      }
    ];

<Accordion contents={accordionSections}/>```