Skip to content

Commit e92e45b

Browse files
macdonstcolepeters
andauthored
Update app/docs/md/conventions/components.md
Co-authored-by: Cole Peters <cole@colepeters.com>
1 parent 523bc52 commit e92e45b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/docs/md/conventions/components.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Let's look at the lifecycle of a component we'll call `DeleteButton`. This compo
1313
1. Client requests a page including a `<delete-button></delete-button>` tag.
1414
2. Enhance SSR finds the component in `app/components/delete-button.mjs`.
1515
3. Enhance SSR runs the `render` method of the `DeleteButton` class on the server.
16-
4. The entire page is returned to the client.
16+
4. The entire page is returned to the client as HTML and CSS.
1717
5. The client encounters a `script` tag and downloads it from the server.
1818
6. This `script` tag includes the code for `DeleteButton` so it is evaluated and executed. When executed the `custom-elements.define('delete-button', DeleteButton)` method will be called registering your web component with the browser.
1919

0 commit comments

Comments
 (0)