From 9c1f938d93554f25fb7376e53741a0d2b6e09508 Mon Sep 17 00:00:00 2001 From: Manuel Carrera Date: Wed, 4 Dec 2024 15:08:26 -0700 Subject: [PATCH] Update modules/docs/mdx/CREATING_COMPOUND_COMPONENTS.mdx Co-authored-by: Nicholas Boll --- modules/docs/mdx/CREATING_COMPOUND_COMPONENTS.mdx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/modules/docs/mdx/CREATING_COMPOUND_COMPONENTS.mdx b/modules/docs/mdx/CREATING_COMPOUND_COMPONENTS.mdx index 14febe4ee3..913a0145ce 100644 --- a/modules/docs/mdx/CREATING_COMPOUND_COMPONENTS.mdx +++ b/modules/docs/mdx/CREATING_COMPOUND_COMPONENTS.mdx @@ -18,10 +18,9 @@ concepts. We will cover: ## Non Coordinated Components -In most cases you'll create compound components that have a model and share information across sub -components. However, in the case where information doesn't need to be shared, you'll create a non +In most cases you'll create compound components that have a model and share information across subcomponents. However, in the case where information doesn't need to be shared, you can create a non coordinated component. These components often represent some styled element with no associated role -or behavior and don't rely on state and events such as a `Card`, `Flex` or `Button` component. Use +or behavior and don't rely on state and events such as a `Card`, `Flex` or `Button` components. Use `createComponent` factory function in these scenarios. ### `createComponent`