I am currently mapping over some data and I would like to create a unique className for each result being returned specifically for the test.typical_dq_domain.
For example below shows what data is being returned... With the value displaying Uniqueness would like to have a className called Uniqueness etc.
{unitTestTemplates.map(test =>
<div className='Table CreateUnitTestsGrid' style={{cursor: 'pointer'}}>
<div>{test.test_type}</div>
<div>{test.typical_dq_domain}</div>
</div>
)}
</div>
