Skip to content

Commit 267e783

Browse files
authored
fix: add missed word in Remote DOM description (#6)
1 parent deab1ac commit 267e783

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercises/02.consistent/README.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
While raw HTML gives us visual interfaces, it has limitations when it comes to creating truly interactive and consistent user experiences. Raw HTML requires you to write all the styling from scratch, handle responsive design manually, and manage complex interactions through custom JavaScript. This leads to inconsistent designs across different UI components and makes it harder to maintain a cohesive user experience.
66

7-
The solution is [**Remote DOM**](https://github.com/Shopify/remote-dom), a library from Shopify that people to safely render arbitrary HTML from an untrusted source. This is a powerful approach that lets you create UI components using a consistent set of web components that are automatically styled and interactive. Instead of writing raw HTML and CSS, you write JavaScript that creates and manipulates DOM elements using predefined UI components.
7+
The solution is [**Remote DOM**](https://github.com/Shopify/remote-dom), a library from Shopify that allows people to safely render arbitrary HTML from an untrusted source. This is a powerful approach that lets you create UI components using a consistent set of web components that are automatically styled and interactive. Instead of writing raw HTML and CSS, you write JavaScript that creates and manipulates DOM elements using predefined UI components.
88

99
Example:
1010

0 commit comments

Comments
 (0)