Skip to content

Instantly share code, notes, and snippets.

@davidgilbertson
Last active April 7, 2020 02:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidgilbertson/5ed8377aebfc0e62d0b908a62f9da7a0 to your computer and use it in GitHub Desktop.
Save davidgilbertson/5ed8377aebfc0e62d0b908a62f9da7a0 to your computer and use it in GitHub Desktop.
import React from 'react';
import { collect } from 'react-recollect';
const App = ({ store }) => {
const { thatThing } = store.site.page.meta.data;
const { anotherThing } = store.ui;
const { aThirdThing } = store.maps.schemas.plans.operations;
return /* ... */
};
export default collect(App);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment