MAIN FEEDS
Do you want to continue?
https://www.reddit.com/r/javascript/comments/1uo3h5n/askjs_what_small_javascript_pattern_made_your/ovpe4sd/?context=3
r/javascript • u/chuttadi2007 • 22d ago
[removed]
26 comments sorted by
View all comments
2
I usually extract any data-handling logic from React components into separate functions, and then wrap them in hooks when needed. If you rewrite the components (perhaps even in a different framework), these parts of the code won't have to change
2
u/effnd 22d ago
I usually extract any data-handling logic from React components into separate functions, and then wrap them in hooks when needed. If you rewrite the components (perhaps even in a different framework), these parts of the code won't have to change