From a96d161e02f683032da7b49f6ecfbc7ccb2fac47 Mon Sep 17 00:00:00 2001 From: Ayo Ayco Date: Thu, 27 Mar 2025 09:46:44 +0100 Subject: [PATCH] feat(docs): component -> custom element --- docs/src/content/docs/guides/getting-started.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/content/docs/guides/getting-started.mdx b/docs/src/content/docs/guides/getting-started.mdx index 71c1fd0..fade9b8 100644 --- a/docs/src/content/docs/guides/getting-started.mdx +++ b/docs/src/content/docs/guides/getting-started.mdx @@ -8,7 +8,7 @@ import { Aside, Badge } from '@astrojs/starlight/components'; **Web Component Base (WCB)** is a zero-dependency, tiny JS base class for creating reactive [custom elements](https://developer.mozilla.org/en-US/docs/Web/API/Web_Components/Using_custom_elements) easily. -When you extend the WebComponent class for your component, you only have to define the template and properties. Any change in any property value will automatically cause just the component UI to render. +When you extend the WebComponent class for your custom element, you only have to define the template and properties. Any change in any property value will automatically cause just the component UI to render. The result is a reactive UI on property changes.