-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathResources.txt
44 lines (29 loc) · 1.53 KB
/
Resources.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
Resources and links => {
Destructuring Objects:
- https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment
*** Container vs Ui Components ***
Container Components UI Components
- Contain State - Don't contain state
- Contain lifecyle hooks - Receive data from props
- Not concerned with UI - Only concerned with UI
- Use classes to Create - Use functions to create
Examples of Ternary Operator:
-https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Conditional_Operator
Diagrams For lifecyle in React:
- http://projects.wojtekmaj.pl/react-lifecycle-methods-diagram/
CSS in React:
- CSS is not active to that particular component. It'll be active for any component rendered at the time.
- Targeting CSS like in Angular can be implemented.
- CSS modules are also available:
* Getting started with CSS Modules in React:
- https://blog.pusher.com/css-modules-react/
Materialize CSS:
- https://materializecss.com/getting-started.html
HashRouter and BrowserRouter difference:
- https://medium.com/@pshrmn/a-simple-react-router-v4-tutorial-7f23ff27adf
Higher Order Component: **30min read
- https://medium.freecodecamp.org/higher-order-components-the-ultimate-guide-b453a68bb851
Redux |What is it? | How it works -->
- https://medium.com/@itsdavidthai/redux-an-explanation-for-beginners-957f268e7382
- https://medium.com/leanjs/introduction-to-redux-redux-explained-with-very-simple-examples-b39d7967ceb8
}