Hacker News new | ask | show | jobs
by cel1ne 3604 days ago
> React for me has some fundamental problems, like its small surface area(only handling the view), which means it doesn't solve all my problems.

I've occasionally, successfully repurposed React to keep track of my AJAX requests. Just create a (<div/>) component for every type and start/cancel the XHRs via componentDidMount() or componentDidUpdate().