Files: 1b77a91b5043f96c866edfed9022577b95e3c14f / app / todos / getters.js
202 bytesRaw
1 | import { createSelector, createStructuredSelector } from 'reselect' |
2 | |
3 | export const getTodos = (state) => state.todos.records |
4 | |
5 | export const getIndexProps = createStructuredSelector({ |
6 | todos: getTodos |
7 | }) |
8 |
Built with git-ssb-web