New to React here. Might be a n00b q but doing a project where I'm trying to build a recipe app and the api I'm using retrieves an object with this value:
<ol>
<li>Place ingredients in a high speed blender like Blendtec for super smooth texture, blend on high.</li>
<li>If using a regular blender put milk and strawberries in then blend.</li>
<li>Next, add banana pieces and peanut butter, process until smooth.</li>
<li>Garnish with crushed peanuts and serve.</li>
</ol>
How would I render it to make the ordered list and unordered list appear on my browser while using Jsx in React? Cause right now it is displaying as such when I render the data from the state object.
Thank you!!