-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Why component
function has type Effect (ReactComponent props)
but not ReactComponent props
#12
Comments
What it would give - easier to use api |
@srghma To answer your question we can look into source code, where we will find out that the only reason Personally, I don't see anything about So I agree with you, |
Good that we are on the same page
|
It's effectful because React uses function instances as component identity. This is why React generally recommends module-level component definition. Creating component functions during render results in forced unmouting and remounting of the entire tree below that component (dumping all component and DOM state), even if all the rendered VDOM is the same as the last render and matches the real DOM. You can actually see this in JS pretty easily with HOC APIs, where Using You can still choose to hide this detail under the rug using Your initial "actual" example is a great way to write it -- keeping the PS bits effectful and running Btw, this is explained briefly in the docs, but if that was confusing or not enough info let me know. |
@spicydonuts OK, it makes sense. I got so used to the idea that |
It does make sense |
e.g. consider writing page for next.js
the
page
function should have type{} -> JSX
orReactComponent {}
Actual:
Expected:
Do we really need to call
mkCounter()
?For example, I don't see that example from https://reactjs.org/docs/hooks-overview.html
was written as
The text was updated successfully, but these errors were encountered: