So I am wanting a single string to display over multiple lines, something like this:
const str = "Hi\n\there\nBob"
let jsxElement = (<div>{str}</div>)
Should display jsxElement like this:
Hi
there
Bob
I have tried \n and \r\n and   and <br> and <br />. Any ideas?