Created
August 30, 2017 15:30
-
-
Save samueljmurray/c357aad47bcfe7b3b18145829fd6d02d to your computer and use it in GitHub Desktop.
Component using form styles
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
| /* MyComponent.js */ | |
| import formStyles from "formStyles"; | |
| class MyComponent extends React.Component { | |
| render() { | |
| return ( | |
| // ... | |
| <TextInput style={formStyles.textInput} /> | |
| // ... | |
| ); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment