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