How to use React Native code, which is available as a string, in my application?
I have some react native code available in a string variable: let customCode='<View><Text style={{fontSize:20}}>Hello World!</Text></View>' How can I use this in my react native application and display the 'View' to the user. Here's my code - import React from 'react';…