lit-html property binding

by Aggre _--

HTML

<script type=module>
import { html, render } from 'https://unpkg.com/lit-html?module'

const photo = (url) => html`<img src='${url}' />`
render(photo('https://images.pexels.com/photos/67636/rose-blue-flower-rose-blooms-67636.jpeg?auto=compress&cs=tinysrgb&h=350'), document.body)
</script>