Replies: 2 comments 10 replies
-
Okay, I think it can be ignored too because it has attached the |
Beta Was this translation helpful? Give feedback.
1 reply
-
In the ReArch context what does mean that a Capsule is idempotent? I'm just trying to replicate a similar mechanism to "Flutter Widget dirty". |
Beta Was this translation helpful? Give feedback.
9 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The three main lifecycle events of a React Component are
componentDidMount
,componentDidUpdate
andcomponentWillUnmount
.I suppose that I can discard
componentDidMount
. But what aboutcomponentDidUpdate
? Should I advice ReArch about this event. React state gets substituted by ReArch state, but what about React properties?https://legacy.reactjs.org/docs/react-component.html#componentdidupdate
Beta Was this translation helpful? Give feedback.
All reactions