I am trying to load a component dynamically from html string. for example: I am having a html string like following which is from json.
<div>This is some html content having a component of <Combobox params="option1,option2,option3"/></div>
here <Combobox params="option1,option2,option3"/> is a React component which i need to render as a HTML combobox with options 1,2 and 3 along with the texts. So, is there any way to do this kind of things in React.