Introduction to reacr and Components
Component Based Architecture (https://www.tutorialspoint.com/software_architecture_design/component_based_architecture.htm)
- What is a component?
- Well-defined functionality that holds implementation and exports to higher interface. Its modular, portable, replaceable, reusable. Its a software object that interacts with other componants
- What are the charactistics of a component?
- Reusability
- Replaceable
- Not context specific
- extensible
- Encapsulated
- Independent
- What are the advantages of using component based architecture?
- Ease of deployment
- Reduced cost
- Reusable
- Modification of technical complexity
- Reliability
- System maintenance and evolution
- Independent
What is Props and How to Use it in React (https://itnext.io/what-is-props-and-how-to-use-it-in-react-da307f500da0#:~:text=%E2%80%9CProps%E2%80%9D%20is%20a%20special%20keyword,way%20from%20parent%20to%20child)
- What is props short for?
- How are props used in React?
- Passing data from one component to another
- What is the flow of props?
Things I want to know more about
- Direction of flow
-
Reuseability
- (https://reactjs.org/tutorial/tutorial.html)
- (https://reactjs.org/docs/hello-world.html)
- (https://reactjs.org/docs/introducing-jsx.html)
- (https://reactjs.org/docs/rendering-elements.html)
- (https://reactjs.org/docs/components-and-props.html)
cite work
- Tutorialspoint (Component based architecture) (https://www.tutorialspoint.com/software_architecture_design/component_based_architecture.htm)
- Itnext (What is “Props” and how to use it in React?) (https://itnext.io/what-is-props-and-how-to-use-it-in-react-da307f500da0)