How to create components from a JSON array in cycle js
问题 Given the labeled slider component example from the Cycle js web site. How would I take a JSON array of slider information objects and create a labeled slider component for each Object in the array. for example if I had an array like this let labelSliderArray = [ { label: 'Height', unit: 'in', min: 40, max: 84, init: 50 }, { label: 'Weight', unit: 'ibs', min: 40, max: 84, init: 50 }, { label: 'Age', unit: 'years', min: 10, max: 65, init: 20 } ] How would I map each label object to a label