From e42803927ea240af395ba0d20cf57b5876bd66e4 Mon Sep 17 00:00:00 2001 From: tkjone Date: Mon, 29 Jul 2019 18:20:51 -0400 Subject: [PATCH] Enhance Docs w/ link to reagent component blog `what the reagent component` is a blog post that details in a little more detail what it means when "underneath they are all just React components". --- doc/CreatingReagentComponents.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/CreatingReagentComponents.md b/doc/CreatingReagentComponents.md index a28e761..19a5fd7 100644 --- a/doc/CreatingReagentComponents.md +++ b/doc/CreatingReagentComponents.md @@ -231,7 +231,7 @@ Leaving out the `:display-name` entry. If you leave it out, Reagent and React h Above I used the terms `Form-1`, `Form-2` and `Form-3`, but there's actually only one kind of component. It is just that there's **3 different ways to create a component**. -At the end of the day, no matter how it is created, a component will end up with a render function and some life-cycle methods. A component created via `Form-1` has the same basic structure as one created via `Form-3` because underneath they are all just React components. +At the end of the day, no matter how it is created, a component will end up with a render function and some life-cycle methods. A component created via `Form-1` has the same basic structure as one created via `Form-3` because underneath they are all [just React components](https://betweentwoparens.com/what-the-reagent-component). ## Appendix A - Lifting the Lid Slightly