react-contextify
v0.1.0
Published
Simple decorator to provide context in the functional style
Downloads
9,304
Maintainers
Readme
React contextify 
High order component to provide the context in the functional style
Installation
npm install --save react-contextifyUsage
import React, {PropTypes} from 'react'
import contextify from 'react-contextify'
const ContextProvider = () => (...)
export default contextify({
foo: PropTypes.string
}, props => ({
foo: props.bar
}))(ContextProvider)
...
const ContextHandler = (_, context) => (...)
ContextHandler.contextTypes = {
foo: PropTypes.string
}
...
<ContextProvider bar="baz">
...
<ContextHandler />
...
</ContextProvider>License
MIT
