Closed itskarelleh closed 3 weeks ago
Turn this into a reusable component.
The following should be done to complete this issue:
Example:
Currently:
<Pressable key={index} style={[ styles.radioButton, selectedOption === index && styles.radioButtonSelected ]} onPress={() => handleOptionSelect(index)}> <Text style={[ styles.radioButtonText, selectedOption === index && styles.radioButtonTextSelected ]}> {option} </Text> </Pressable>
Desired Outcome
<MultipleChoiceOption option={option} />
Issue solved with #33. Closing this issue.
Turn this into a reusable component.
The following should be done to complete this issue:
Example:
Currently:
Desired Outcome