Convert some strings into dom nodes and render them with react

for example, now I have a bunch of strings, such as: my mother takes me * *.
now how do I convert "Mom take me " to Mom take me and render it in react as bold.
instead of rendering to Mom take me * or
clipboard.png like this


<div dangerouslySetInnerHTML={ {__html: 'lilnong'.replace(/()/g,'<i>$1</i>')} }/>
Menu