withContext.js 194 B

1234567
  1. import React from 'react'
  2. export const withContext = (Context, Component) => props => (
  3. <Context.Consumer>
  4. {context => <Component {...props} context={context} />}
  5. </Context.Consumer>
  6. )