-
Notifications
You must be signed in to change notification settings - Fork 56
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
Changing example to React functional components #110
Comments
This is especially needed if you're using dynamic components as refs have changed. An example of how to update dynamic components in a functional component:
|
@jcapogna I've been fighting this for hours. Happy I found your comment. Note that I had to also account for a transition that moves the element across the screen, so I also have a delay in place to account for both te element mounting and the transition being done, pseudo code looks like:
|
@jaimefps Glad it helped. I had to delay for a transition in my use case as well. I trigger an element to appear, which then results in an animation happening. |
for anyone who wants to have an idea of what |
Is your feature request related to a problem?
As of 2024, most developers have been using React's functional components instead of Class-based components. Hence understanding the documentation of the library would be easy if components were written using functions. Look at the example here: https://codesandbox.io/embed/o2A4gwXE3
Describe the solution you'd like
Rewriting the examples to functional components.
Describe alternatives you've considered
No response
Additional Context
No response
The text was updated successfully, but these errors were encountered: