June 2016
Intermediate to advanced
910 pages
18h 59m
English
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>
);
}
});Read now
Unlock full access