I want to render a list from an array of objects in React. The 'answer' key contains the following text...
Question: blah,
Answer: `List title
The biggest benefits of Kin are:
1.
2.
3.
4.
`
I would like to add spacing between the list items. Like I've demonstrated here...
Answer: `List title
The biggest benefits of Kin are:
<br/>
1.
<br/>
2.
<br/>
3.
<br/>
4.
Adding any html tag between the list items doesn't work as the tag gets rendered like so:
1.<br [innerHTML]>2.<br [innerHTML]>...
Any ideas?