Status: Tags: Links: ReactJS
ReactJS Components
Principles
- Capitalized
Storing
-
Can render functions/other files which store elements
-
Store components into folders
-
Can be passed ReactJS Props for dynamic
Tips
- Hide components if empty parameters
- ex)
<h3 style={{display: props.question ? "block" : "none"}}>
- ex)
display: !props.question && "none"
- ex)
- Can use
array.map
to efficiently send data to smaller components and make code for lists more compact- You can just put an array in the return
Example
Hierarchy Structure
App.js
|
|
index.js
|
|
Backlinks
|
|
References:
Created:: 2021-10-01 19:32