Last active
October 17, 2016 06:39
-
-
Save johntran/e70fb469843c303c9c3e0ca1d15fce66 to your computer and use it in GitHub Desktop.
JSX shorthand
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
// before | |
<AccountCardInformationFields | |
cardType={cardType} | |
cardForm={cardForm} | |
cardFormErrors={cardFormErrors} | |
cardFieldOnChange={this.cardFieldOnChange} | |
/> | |
// after | |
<AccountCardInformationFields { | |
...{ | |
cardType, | |
cardForm, | |
cardFormErrors, | |
cardcardFieldOnChange: this.cardFieldOnChange | |
} | |
} | |
/> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment