Why does this library exist when you can just use template strings?
function myComponent(props) { return `<div>${props.name}</div>` }
Why does this library exist when you can just use template strings?