I'm importing raw HTML elements from JSON data into my React Native app in the following way:
<p>This is some text. Let’s figure out...</p>
In my app, I've added the data to a view as follows:
<Text>{this.props.content}</Text>
The HTML is rendered incorrectly and appears in its raw form, which is a concern.
Is it possible to make my app view's JSON data resemble how it would appear in a browser?