React components

What are components in React and how can we create them?

We'll cover the following...

To create a ReactComponent we write a function that returns a ReactElement:

var Wrapper = function(props) {
  return React.createElement('div', { className: 'wrapper' });
}

We can then use these components like any DOM Node by passing it into a createElement ...