Created
February 7, 2017 05:21
-
-
Save oshimayoan/27db4bcb8805ce397d7e18f7888f086a to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| // @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