Skip to content

Instantly share code, notes, and snippets.

@jide
Created August 24, 2016 22:39
Show Gist options
  • Save jide/013d81fd4c220ae85a62622919debba6 to your computer and use it in GitHub Desktop.
Save jide/013d81fd4c220ae85a62622919debba6 to your computer and use it in GitHub Desktop.
// Use default :
import React from 'react'
import { render } from 'react-dom'
import MyComponentWrapper from './MyComponentWrapper'
ReactDOM.render(<MyComponentWrapper/>)
// Use a custom component :
import React from 'react'
import { render } from 'react-dom'
import MyCustomComponent from './MyCustomComponent'
import { inject } from './MyComponentWrapper'
const MyComponentWrapper = inject({
MyComponent: MyCustomComponent
})
ReactDOM.render(<MyComponentWrapper/>)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment