···2425```html
26<script type="module">
27- import { morph } from "https://www.unpkg.com/morphlex@0.0.16/dist/morphlex.min.js";
2829- morph(currentNode, referenceNode);
30- morphInner(currentNode, referenceNode);
31</script>
32```
33···38```
3940```javascript
41-import { morph } from "morphlex";
4243-morph(currentNode, referenceNode);
44```
4546The `currentNode` will be morphed into the state of the `referenceNode`. The `referenceNode` will not be mutated in this process.
···2425```html
26<script type="module">
27+ import { morph } from "https://www.unpkg.com/morphlex@0.0.16/dist/morphlex.min.js"
2829+ morph(currentNode, referenceNode)
30+ morphInner(currentNode, referenceNode)
31</script>
32```
33···38```
3940```javascript
41+import { morph } from "morphlex"
4243+morph(currentNode, referenceNode)
44```
4546The `currentNode` will be morphed into the state of the `referenceNode`. The `referenceNode` will not be mutated in this process.