diff options
author | 2022-09-19 21:28:06 +0530 | |
---|---|---|
committer | 2022-09-19 12:58:06 -0300 | |
commit | 620f1d9e1e8b2d92a275be4c5228099663c62c9e (patch) | |
tree | 6287f568b63f1296d30602abf5b1bc6c23a2e50b | |
parent | cf5ed5f3a87ea7b3a7ac6b9dd5a8659e41084ce1 (diff) | |
download | astro-620f1d9e1e8b2d92a275be4c5228099663c62c9e.tar.gz astro-620f1d9e1e8b2d92a275be4c5228099663c62c9e.tar.zst astro-620f1d9e1e8b2d92a275be4c5228099663c62c9e.zip |
fixed broken emoji for in "Getting started" section of integration docs (#4795)
* fixed broken emoji for "nest frameworks together"
* Add missing whitespace
Co-authored-by: Yan Thomas <61414485+Yan-Thomas@users.noreply.github.com>
-rw-r--r-- | packages/integrations/lit/README.md | 2 | ||||
-rw-r--r-- | packages/integrations/mdx/README.md | 2 | ||||
-rw-r--r-- | packages/integrations/preact/README.md | 2 | ||||
-rw-r--r-- | packages/integrations/react/README.md | 2 | ||||
-rw-r--r-- | packages/integrations/solid/README.md | 2 | ||||
-rw-r--r-- | packages/integrations/svelte/README.md | 2 | ||||
-rw-r--r-- | packages/integrations/vue/README.md | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/packages/integrations/lit/README.md b/packages/integrations/lit/README.md index af3f78238..23bda5cf9 100644 --- a/packages/integrations/lit/README.md +++ b/packages/integrations/lit/README.md @@ -57,7 +57,7 @@ export default { To use your first Lit component in Astro, head to our [UI framework documentation][astro-ui-frameworks]. This explains: - 📦 how framework components are loaded, - 💧 client-side hydration options, and -- 🪆 opportunities to mix and nest frameworks together +- 🤝 opportunities to mix and nest frameworks together However, there's a key difference with Lit _custom elements_ over conventional _components_: you can use the element tag name directly. diff --git a/packages/integrations/mdx/README.md b/packages/integrations/mdx/README.md index 181e55faa..856127098 100644 --- a/packages/integrations/mdx/README.md +++ b/packages/integrations/mdx/README.md @@ -78,7 +78,7 @@ You can [add MDX pages to your project](https://docs.astro.build/en/guides/markd To use components in your MDX pages in Astro, head to our [UI framework documentation][astro-ui-frameworks]. You'll explore: - 📦 how framework components are loaded, - 💧 client-side hydration options, and -- 🪆 opportunities to mix and nest frameworks together +- 🤝 opportunities to mix and nest frameworks together [**Client Directives**](https://docs.astro.build/en/reference/directives-reference/#client-directives) are still required in `.mdx` files. diff --git a/packages/integrations/preact/README.md b/packages/integrations/preact/README.md index 742d3654b..4a4a4d9ba 100644 --- a/packages/integrations/preact/README.md +++ b/packages/integrations/preact/README.md @@ -70,7 +70,7 @@ export default defineConfig({ To use your first Preact component in Astro, head to our [UI framework documentation][astro-ui-frameworks]. You'll explore: - 📦 how framework components are loaded, - 💧 client-side hydration options, and -- 🪆 opportunities to mix and nest frameworks together +- 🤝 opportunities to mix and nest frameworks together Also check our [Astro Integration Documentation][astro-integration] for more on integrations. diff --git a/packages/integrations/react/README.md b/packages/integrations/react/README.md index e254ee901..eac25522d 100644 --- a/packages/integrations/react/README.md +++ b/packages/integrations/react/README.md @@ -57,7 +57,7 @@ export default { To use your first React component in Astro, head to our [UI framework documentation][astro-ui-frameworks]. You'll explore: - 📦 how framework components are loaded, - 💧 client-side hydration options, and -- 🪆 opportunities to mix and nest frameworks together +- 🤝 opportunities to mix and nest frameworks together Also check our [Astro Integration Documentation][astro-integration] for more on integrations. diff --git a/packages/integrations/solid/README.md b/packages/integrations/solid/README.md index 63daaefdf..3cb9e69e4 100644 --- a/packages/integrations/solid/README.md +++ b/packages/integrations/solid/README.md @@ -57,7 +57,7 @@ export default { To use your first SolidJS component in Astro, head to our [UI framework documentation][astro-ui-frameworks]. You'll explore: - 📦 how framework components are loaded, - 💧 client-side hydration options, and -- 🪆 opportunities to mix and nest frameworks together +- 🤝 opportunities to mix and nest frameworks together Also check our [Astro Integration Documentation][astro-integration] for more on integrations. diff --git a/packages/integrations/svelte/README.md b/packages/integrations/svelte/README.md index 9c48177e8..1554560a3 100644 --- a/packages/integrations/svelte/README.md +++ b/packages/integrations/svelte/README.md @@ -57,7 +57,7 @@ export default { To use your first Svelte component in Astro, head to our [UI framework documentation][astro-ui-frameworks]. You'll explore: - 📦 how framework components are loaded, - 💧 client-side hydration options, and -- 🪆 opportunities to mix and nest frameworks together +- 🤝 opportunities to mix and nest frameworks together Also check our [Astro Integration Documentation][astro-integration] for more on integrations. diff --git a/packages/integrations/vue/README.md b/packages/integrations/vue/README.md index 9666bf394..85f5ef98a 100644 --- a/packages/integrations/vue/README.md +++ b/packages/integrations/vue/README.md @@ -57,7 +57,7 @@ export default { To use your first Vue component in Astro, head to our [UI framework documentation][astro-ui-frameworks]. You'll explore: - 📦 how framework components are loaded, - 💧 client-side hydration options, and -- 🪆 opportunities to mix and nest frameworks together +- 🤝 opportunities to mix and nest frameworks together Also check our [Astro Integration Documentation][astro-integration] for more on integrations. |