Unless otherwise indicated, these slides are © 2013-2015 Pivotal Software, Inc. and licensed under a
Creative Commons Attribution-NonCommercial license: http://creativecommons.org/licenses/by-nc/3.0/
JSX transformer
39
React.createElement("div", {className: "col-md-4"},
React.createElement("h2", null, this.props.author),
React.createElement("p", null, this.props.content, " "),
React.createElement("p", null,
React.createElement("a", {className: "btn btn-default",
href: "#", role: "button",
onClick: this.handleClick}, "View details")
)
)