We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e1e745a + 6c5586f commit e114bd8Copy full SHA for e114bd8
README.md
@@ -28,9 +28,9 @@ It uses standard JavaScript [Tagged Templates] and works in [all modern browsers
28
29
The syntax you write when using HTM is as close as possible to JSX:
30
31
-- Spread props: `<div ...${props}>`
+- Spread props: `<div ...${props}>` instead of `<div {...props}>`
32
- Self-closing tags: `<div />`
33
-- Components: `<${Foo}>` _(where `Foo` is a component reference)_
+- Components: `<${Foo}>` instead of `<Foo>` _(where `Foo` is a component reference)_
34
- Boolean attributes: `<div draggable />`
35
36
0 commit comments