Merge pull request #437 from tkjone/patch-1

Enhance Docs w/ link to reagent component blog
This commit is contained in:
Juho Teperi 2019-08-13 20:00:59 +02:00 committed by GitHub
commit 2f4f9ac0eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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