Skip to content

Instantly share code, notes, and snippets.

@CoreyTrombley
Last active August 29, 2015 14:13
Show Gist options
  • Save CoreyTrombley/df17b7a63e4ae2747601 to your computer and use it in GitHub Desktop.
Save CoreyTrombley/df17b7a63e4ae2747601 to your computer and use it in GitHub Desktop.
React modal notes

React modal notes

JSX Spread Attributes

link

Now you can use a new feature of JSX called spread attributes:

  var props = {};
  props.foo = x;
  props.bar = y;
  var component = <Component {...props} />;

The properties of the object that you pass in are copied onto the component's props.

Deprecating transferPropsTo

link

pre-built components

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment