import { Provider, Subscribe } from 'react-contextual' const store = { count: 0, up: () => state => ({ count: state.count + 1 }), down: () => state => ({ count: state.count - 1 }), } const App = () => ( {props => (

{props.count}

)}
)