I want to be able to display a grid row gap if test.space_above = true on the data I am mapping over.
{sortedUnitTestTemplates.map(test =>
<div key={test.id} className='Table CreateUnitTestsGrid' style={{cursor: 'pointer'}} onClick={() => onTestTypeClick(test.id)}>
<div>{test.test_type}</div>
<div style={{width: '150px'}}>
{!test.typical_dq_domain ? null :
<Chip
label={test.typical_dq_domain}
className='Badge'
style={{
width: '100%',
color: getColor('fg', test.typical_dq_domain),
backgroundColor: getColor('bg', test.typical_dq_domain)
}}
/>
}
</div>
</div>
)}
</div>