Files: 6e54ec7e0a93b37c7cc58a79bbcf7842443bbea1 / 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