mol_jsx_lib 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# $mol_jsx
|
|
2
2
|
|
|
3
|
-
JSX adapter that makes DOM tree. Generates global uniue ids for every dom-element by components tree with ids. Ensures all local ids are unique. Can reuse an existing nodes by guids when used inside [`$mol_jsx_attach`](
|
|
3
|
+
JSX adapter that makes DOM tree. Generates global uniue ids for every dom-element by components tree with ids. Ensures all local ids are unique. Can reuse an existing nodes by guids when used inside [`$mol_jsx_attach`](https://github.com/hyoo-ru/mam_mol/tree/master/jsx/attach).
|
|
4
4
|
|
|
5
5
|
## Usage example
|
|
6
6
|
|
|
@@ -50,9 +50,9 @@ Result:
|
|
|
50
50
|
</html>
|
|
51
51
|
```
|
|
52
52
|
|
|
53
|
-
[More examples in tests.](jsx.test.tsx)
|
|
53
|
+
[More examples in tests.](https://github.com/hyoo-ru/mam_mol/tree/master/jsx/jsx.test.tsx)
|
|
54
54
|
|
|
55
55
|
# See also
|
|
56
56
|
|
|
57
|
-
- [$mol_jsx_attach](attach) - render JSX to existing document
|
|
58
|
-
- [$mol_jsx_view](view) - statefull view bound to dom-element
|
|
57
|
+
- [$mol_jsx_attach](https://github.com/hyoo-ru/mam_mol/tree/master/jsx/attach) - render JSX to existing document
|
|
58
|
+
- [$mol_jsx_view](https://github.com/hyoo-ru/mam_mol/tree/master/jsx/view) - statefull view bound to dom-element
|