I am having problems displaying { and } as text in React. I saw a similar question that someone said to wrap the entire string in curlies, but this is not working:
You can even use string interpolation in ES6.
Template literals are string literals allowing embedded expressions. You can use multi-line strings and string interpolation features with them.
Template literals are enclosed by the backtick () (grave accent) character instead of double or single quotes.
eg: return ({`{{}}`}
)