Skip to content

Instantly share code, notes, and snippets.

@oshimayoan
Created February 7, 2017 05:21
Show Gist options
  • Select an option

  • Save oshimayoan/27db4bcb8805ce397d7e18f7888f086a to your computer and use it in GitHub Desktop.

Select an option

Save oshimayoan/27db4bcb8805ce397d7e18f7888f086a to your computer and use it in GitHub Desktop.
// @flow
function combinedStyles(defaultStyle: Object, newStyle: ?Object) {
if (newStyle) {
return {...defaultStyle, ...newStyle};
}
return defaultStyle;
}
export default combinedStyles;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment