One thing at a time!

Finally, in the top-level Pragmatometer class, we comment out the display of Todo, so that only this will display while we are working on it. Next, we comment out the Calendar component to work on the scratchpad, and when this is done, the final integration will place these elements in the four corners of the screen:

  var Pragmatometer = React.createClass({
    render: function() {
      return (
        <div className="Pragmatometer">
          <Calendar />
          {/* <Todo />
          <Scratch />
          <YouPick /> */}
        </div>
      );
    }
  });

Get React: Building Modern Web Applications now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.