1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-31 04:59:50 +02:00

Add resources for React (#3245)

* [Build] React Roadmap

1. Came across two other interesting topics related to props and state in react
2. Would like to suggest that we add these to the list as well as they highlight something important
3. One is from robinwieruch and the other from Dominik Dorfmeister (TkDodo)

* [Build] React Roadmap Contributions

1. Added one topic for Composition vs Inheritance
2. Added topics for Props vs State
3. Added topic for Render Props
This commit is contained in:
Sricharan Krishnan
2023-01-06 17:22:32 +05:30
committed by GitHub
parent f76f0ea1a6
commit 1f3bf761cd
3 changed files with 4 additions and 0 deletions

View File

@@ -7,3 +7,5 @@ Visit the following resources to learn more:
- [Component State](https://reactjs.org/docs/faq-state.html)
- [How to use Props in React](https://www.robinwieruch.de/react-pass-props-to-component/)
- [What is the difference between state and props in React?](https://stackoverflow.com/questions/27991366/what-is-the-difference-between-state-and-props-in-react)
- [How to update state from props in React](href='https://www.robinwieruch.de/react-derive-state-props/)
- [Putting props to useState](https://tkdodo.eu/blog/putting-props-to-use-state)

View File

@@ -6,3 +6,4 @@ Visit the following resources to learn more:
- [Composition vs Inheritance](https://reactjs.org/docs/composition-vs-inheritance.html)
- [How to perform component composition in React](https://www.robinwieruch.de/react-component-composition/)
- [Achieving Reusability With React Composition](https://formidable.com/blog/2021/react-composition/)

View File

@@ -8,3 +8,4 @@ Visit the following resources to learn more:
- [Render Props in React](https://reactjs.org/docs/render-props.html)
- [How to create a Render Prop Component](https://www.robinwieruch.de/react-render-props/)
- [Render Props Pattern](https://www.patterns.dev/posts/render-props-pattern/)