How to use Recoil Selectors in Nextjs

Welcome 👋, to this new blog post where I will teach you how you can use selectors in recoil for state management.

🤔Difference between Atoms and Selectors

Atoms are used to store a value. But selectors are used to getting or setting the valu…


This content originally appeared on DEV Community and was authored by Next Dev

Welcome 👋, to this new blog post where I will teach you how you can use selectors in recoil for state management.

🤔Difference between Atoms and Selectors

Atoms are used to store a value. But selectors are used to getting or setting the value of an atom. In simple words, selectors help you perform complex logic for your website.

😁Situation

Let’s suppose I give you a project of making a currency converter. In this project, you need to have two inputs US dollars and Rupee. But the problem is how will you convert the US dollars to Rupee in recoil so that you can use values globally.

💡Solution

We can use selectors here. But how?

Step1: Setup your recoil.
Recoil State Management in Nextjs

Step2: Now make a new atom called usdAtom


Then come to your index.tsx file

Step3: Now make a new selector called rupeeSelector


Now you can enjoy the values

Whole Code:
GitHub - nextdev1111/selectors

For people who want to see a video for it in Hindi 👇
https://youtu.be/2MtkTIuQI1k


This content originally appeared on DEV Community and was authored by Next Dev


Print Share Comment Cite Upload Translate Updates
APA

Next Dev | Sciencx (2022-06-07T05:40:49+00:00) How to use Recoil Selectors in Nextjs. Retrieved from https://www.scien.cx/2022/06/07/how-to-use-recoil-selectors-in-nextjs/

MLA
" » How to use Recoil Selectors in Nextjs." Next Dev | Sciencx - Tuesday June 7, 2022, https://www.scien.cx/2022/06/07/how-to-use-recoil-selectors-in-nextjs/
HARVARD
Next Dev | Sciencx Tuesday June 7, 2022 » How to use Recoil Selectors in Nextjs., viewed ,<https://www.scien.cx/2022/06/07/how-to-use-recoil-selectors-in-nextjs/>
VANCOUVER
Next Dev | Sciencx - » How to use Recoil Selectors in Nextjs. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2022/06/07/how-to-use-recoil-selectors-in-nextjs/
CHICAGO
" » How to use Recoil Selectors in Nextjs." Next Dev | Sciencx - Accessed . https://www.scien.cx/2022/06/07/how-to-use-recoil-selectors-in-nextjs/
IEEE
" » How to use Recoil Selectors in Nextjs." Next Dev | Sciencx [Online]. Available: https://www.scien.cx/2022/06/07/how-to-use-recoil-selectors-in-nextjs/. [Accessed: ]
rf:citation
» How to use Recoil Selectors in Nextjs | Next Dev | Sciencx | https://www.scien.cx/2022/06/07/how-to-use-recoil-selectors-in-nextjs/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.