JSFiddle - React, Tailwind, and code Playground
JavaScript
const $ = (a,...c) => console.log('@',a,raw[0])
const a = ({thing}) => $`<div> ${thing} </div>`
const test = view => {
console.log(view({thing: 'x'}))
}
//console.log($ `<div> ${123} </div>`, `<div> ${123} </div>`, $`<div> ${123} </div>` === `<div> ${123} </div>`)
test(a)