From 2ddb3b19c8a73962df7092e4580823591e2e457d Mon Sep 17 00:00:00 2001 From: Elliott Marquez <5981958+e111077@users.noreply.github.com> Date: Fri, 15 Dec 2023 22:53:04 -0800 Subject: [PATCH] word fixes --- .../site/articles/article/redux-reactive-controllers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/lit-dev-content/site/articles/article/redux-reactive-controllers.md b/packages/lit-dev-content/site/articles/article/redux-reactive-controllers.md index b0f2ac950..2f738a3a9 100644 --- a/packages/lit-dev-content/site/articles/article/redux-reactive-controllers.md +++ b/packages/lit-dev-content/site/articles/article/redux-reactive-controllers.md @@ -18,7 +18,7 @@ author: Lit makes it easy to create web components – reusable HTML elements with shared logic. However, different elements often have similar behaviors, and creating another element just for sharing a behavior may be excessive. -[Reactive Controllers](/docs/composition/controllers/) can help the problem of sharing logic across components without having to create a new web component. They are similar to custom hooks in React, and in this article, we will use them to integrate the state manager Redux with Lit's rendering lifecycle for a more self-contained, composable, idiomatic Lit experience. +[Reactive Controllers](/docs/composition/controllers/) can help with the problem of sharing logic across components without having to create a new web component. They are similar to custom hooks in React, and in this article, we will use them to integrate the state manager Redux with Lit's rendering lifecycle for a more self-contained, composable, idiomatic Lit experience. By the end of this article, you will learn how to use Reactive Controllers to integrate third party libraries into Lit by integrating Redux into Lit. To do this, we will create a Reactive Controller that selects part of a Redux state and updates a component whenever the state updates.