We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the reducer handle the following actions
BLOCK_ADD //block is added BLOCK_REMOVE //block is removed BLOCK_WORD_REMOVE //word in a block is removed
the blocks reducer will contain two reducers
blocks
byId
allIds
And the store should look like this
const store = { ... blocks: { byId: { 'block1': { id: 'block1', words: ['1', '2'] }, 'block2': { id: 'block2', words: ['3', '4'] } }, allIds: ['block1', 'block2'] } };
The text was updated successfully, but these errors were encountered:
nadeemkhedr
Successfully merging a pull request may close this issue.
Development
In the reducer handle the following actions
the
blocks
reducer will contain two reducersbyId
allIds
And the store should look like this
The text was updated successfully, but these errors were encountered: