Skip to content

Instantly share code, notes, and snippets.

@johntran
Last active October 17, 2016 06:39
Show Gist options
  • Save johntran/e70fb469843c303c9c3e0ca1d15fce66 to your computer and use it in GitHub Desktop.
Save johntran/e70fb469843c303c9c3e0ca1d15fce66 to your computer and use it in GitHub Desktop.
JSX shorthand
// 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