...

/

Configuring and Using Jotai in the Funbook App

Configuring and Using Jotai in the Funbook App

Learn how to configure Jotai without complex setups, and quickly use Jotai, a minimalistic atomic state management library, in a React Native app.

Installing Jotai

For people who are a fan of simplicity, they might just fall in love with this state management library. Configuring it in our app only requires running the install command in the terminal:

npm install jotai

Alternatively, see the following:

yarn add jotai

Adding Suspense for configuration

There’s one hidden gem of configuration to be added: Suspense. ...