Created
April 5, 2016 17:26
-
-
Save jbaxleyiii/a9afc73e0b40003043bb5c75d77bd4bd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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