Skip to content
Snippets Groups Projects
Commit 03a235d8 authored by mashazyu's avatar mashazyu Committed by Sofiya Tepikin
Browse files

Formatting fix

parent 0adbf343
No related branches found
No related tags found
No related merge requests found
...@@ -13,15 +13,14 @@ const YAxis = ({ height, symptomsToDisplay, symptomsSectionHeight }) => { ...@@ -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 />
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment