Skip to content

Instantly share code, notes, and snippets.

@jsmanifest
Created June 29, 2019 19:29
Show Gist options
  • Save jsmanifest/e8a96e89205921c079edf41d253123f5 to your computer and use it in GitHub Desktop.
Save jsmanifest/e8a96e89205921c079edf41d253123f5 to your computer and use it in GitHub Desktop.
const Parent = (props) => {
if (props.user && props.user.email) {
// Fire some redux action to update something globally that another
// component might need to know about
}
// Continue on with the app
return <Child {...props} />
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment