Created
May 16, 2019 22:21
-
-
Save nadeesha/80055a49d62b56c2d5c6ab615c7ceda5 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
export const conditionally = (config) => (props) => { | |
return config.if(props) ? | |
config.then(props) : config.else(props); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment