Formatting fix
This commit is contained in:
@@ -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 />
|
||||||
|
|||||||
Reference in New Issue
Block a user