📄️ Core concepts
QuickState is a library for application state management that draws from the best practices of Flux architecture,
📄️ Installation
Seamlessly integrate QuickState into your project with our straightforward installation guide. Whether you prefer npm,
📄️ Creating store
If you have already installed QuickState, the next step is to create a store using makeStore function. Function for
📄️ Creating actions
Now that you have your own store set up, you can proceed to create actions. The createAction function, which is used to
📄️ Creating selectors
Selectors are a means of extracting values from your state. In a manner akin to createAction, the store offers a
📄️ Testing QuickState
Testing is a critical part of the development process, ensuring that your state management logic works as expected. This