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