My thoughts exactly. JSX provides the best templating syntax I have seen - it's just JS, and it uses curly braces to delineate JS. Putting JS, or worse, custom syntax in strings is terrible, and every other delineator choice is less idiomatic and uglier than curly braces.
I see your stance! There are two ways to this: JS-first (React) or HTML- first. Hyper takes the latter: purely focusing on the semantic HTML structure when assembling interfaces. Focusing on pure structure (like React 1.0) and delegating design and logic to concerns that master it the best.
kakuri|9 months ago
silverwind|9 months ago
- Original HTML attribute names, `class` instead of `className`, `for` instead of `htmlFor`
- Let expressions and components return multiple elements without the need for `Fragment`.
Could make a JSX 2.0 which would be much closer to actual HTML.
owebmaster|9 months ago
tipiirai|9 months ago
mpeg|9 months ago
mpeg|9 months ago