Skip to content

Instantly share code, notes, and snippets.

@adamkleingit
Created July 9, 2019 10:31
Show Gist options
  • Save adamkleingit/8f0fe40f81bb408e54e13ea261e6b0f4 to your computer and use it in GitHub Desktop.
Save adamkleingit/8f0fe40f81bb408e54e13ea261e6b0f4 to your computer and use it in GitHub Desktop.
Reusable Selectors
import {createStore} from 'reusable';
const useTodos = createStore(() => useState([]));
const Comp = () => {
const todosCount = useTodos(
([todos]) => todos.length
);
...
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment