Skip to content

Instantly share code, notes, and snippets.

@jbaxleyiii
Created April 5, 2016 17:26
Show Gist options
  • Save jbaxleyiii/a9afc73e0b40003043bb5c75d77bd4bd to your computer and use it in GitHub Desktop.
Save jbaxleyiii/a9afc73e0b40003043bb5c75d77bd4bd to your computer and use it in GitHub Desktop.
import assign from "lodash.assign"
// style = {...style, this.props.style}
style = assign({}, style, this.props.style)
/*
style = {...style, ...{
cursor: "inherit"
}}
*/
style = assign({}, style, {
cursor: "inherit"
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment