It looks interesting and in a past life I probably would have tried it out but do you know why I like React? Because it's just JavaScript. This ` ` and ` ` syntax is awful.
{% for user in users %}
{{ user.firstName }}
{% endfor %}
And we have good syntax for templates now:
{#each users as user}
{user.firstName}
{/each}
Why do we have to squish everything into HTML-like-but-not-quite blocks?But no, JSX isn’t that great either:
{users.map(user => (
{user.firstName}
))}