DevTools v1.0.0
·
500 commits
to master
since this release
This is the first release for React Async DevTools. Current features include:
- Show all pending/fulfilled/rejected promises in all instances of React Async
- Slow down requests by adding a virtual latency
- Intercept new requests before they start, to manually continue later
React Async v7.0.0 is required to use the DevTools.
Usage example:
import DevTools from "react-async-devtools"
ReactDOM.render(
<>
<DevTools />
<App />
</>,
document.getElementById("root")
)