Last active
March 20, 2017 20:11
-
-
Save chrisui/25e652f82d738f23d033af58e9efdd21 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
function Text(props) { | |
return <Span color="black" {...props} /> | |
} | |
const BlueText = withProps({ | |
color: 'blue' | |
})(Text) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment