This project is a quickbits showcase of Recoil's atomFamily API.
Often in financial applications we have many pieces of independent data that need to be updated rapidly and independently. This is a perfect use case for the atomFamily since it can dynamically generate unique atoms of state to be associated with a given ID. These unique atoms ensure that only components which are subscribed to it are updated.
Clone this repository, npm install, npm run dev, and you're ready to get going:
git clone git@github.com:lab49/quickbits-recoil-atom-family.git
npm i
npm run devOpen http://localhost:3000 in your browser to get started!

