I am planning to save the rich formatted text. So I built the react app and saved the data from contenteditable div in database as
<P> this is demo </p><br/><p>This is new</p>
when rendering in react app I am setting innerHTML of the div. Now I want to achive the same functionality in my mobile app. I am able to render the rich text with react-native-htmlview but I am not sure if its a good approach. also how to provide the post feed functionality through mobile app ? In my app I can not get the innerHTML to save. what would be the best approach ?