Formatting fix

This commit is contained in:
mashazyu
2019-11-17 20:39:00 +01:00
committed by Sofiya Tepikin
parent 0adbf3436b
commit 03a235d8cb
+2 -3
View File
@@ -13,15 +13,14 @@ const YAxis = ({ height, symptomsToDisplay, symptomsSectionHeight }) => {
return ( return (
<View> <View>
<View style={[styles.yAxis, {height: symptomsSectionHeight}]}> <View style={[styles.yAxis, {height: symptomsSectionHeight}]}>
{symptomsToDisplay.map(symptom => { {symptomsToDisplay.map(symptom => (
return (
<SymptomIcon <SymptomIcon
key={symptom} key={symptom}
symptom={symptom} symptom={symptom}
height={symptomIconHeight} height={symptomIconHeight}
/> />
) )
})} )}
</View> </View>
<TickList height={height} /> <TickList height={height} />
<ChartLegend /> <ChartLegend />