Say I have a string const s = "I love $FB", and I wanna get:
<p>I love <a href="/symbol/FB">$FB</a></p> by <RenderContent content={s}>
I can use reg to extract the symbol, but how can I turn the string into a React component, without using dangerouslySetInnerHTML?