Created
January 17, 2017 21:45
-
-
Save dawehner/0bd253e8e21180e5dd262952fe075484 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
| const button = this.state.valid ? ( | |
| <Button raised colored>Submit</Button> | |
| ) : ( | |
| <Button raised colored disabled>Submit</Button> | |
| ); | |
| return ( | |
| <form onSubmit={this.handleSubmit}> | |
| { apiKeyField } | |
| { button } | |
| </form> | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment