Skip to content

Instantly share code, notes, and snippets.

@Roconda
Created August 28, 2015 07:23
Show Gist options
  • Save Roconda/5155a4f6a73c579bf2f8 to your computer and use it in GitHub Desktop.
Save Roconda/5155a4f6a73c579bf2f8 to your computer and use it in GitHub Desktop.
mport React from 'react'
import { Provider } from 'react-redux'
import { connect } from 'react-redux'
import Dashboard from './Dashboard'
export default class Application extends React.Component {
render() {
return(
<Provider store={this.props.store}>
{ () => <Dashboard store={this.props.store} /> }
</Provider>
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment