LogoLogo
HomeDocsGitHubDiscord
master
master
  • Introduction
  • Getting started
    • Installation
    • Upgrading
    • Usage
    • DevTools
  • API
    • Interfaces
    • Configuration options
    • State properties
    • Helper components
  • Guide
    • Async components
    • Separating view and logic
    • Async actions
    • Optimistic updates
    • Server-side rendering
  • Contributing
    • Introduction
    • Setting up
    • Development
    • Testing
    • Releasing
Powered by GitBook
On this page

Was this helpful?

  1. Getting started

DevTools

React Async comes with a separate DevTools package which helps you Debug and develop your asynchronous application states. You can install it from npm:

npm install --save react-async-devtools

Or if you're using Yarn:

yarn add react-async-devtools

Then simply import it and render the<DevTools /> component at the root of your app:

import DevTools from "react-async-devtools"

export const Root = () => (
  <>
    <DevTools />
    <App />
  </>
)
PreviousUsageNextInterfaces

Last updated 5 years ago

Was this helpful?