Mitch Masia
Building awesome products using React, React Native, GraphQL, and Elixir.
Hard to track updates
Expensive DOM operations
Debugging nightmare
const element = (
<h1 className="greeting">
Hey, Morrison!
</h1>
);
const element = React.createElement(
'h1',
{ className: 'greeting' },
'Hey, Morrison!'
);
By Mitch Masia
A JavaScript library for building user interfaces
Building awesome products using React, React Native, GraphQL, and Elixir.