Let's say I have a simple template string :
const foo = `<div>foo</div>`;
How do I go about rendering this template string as HTML ? It renders it as plain text if I do the following :
return({ foo });
Output:
<div>foo</div>
Expected output:
foo