You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
412 B
16 lines
412 B
/**
|
|
* @jsx React.DOM
|
|
*/
|
|
|
|
var CB_03-IF-ELSE-IN-JSX_COMPONENT = "
|
|
/** @jsx React.DOM */
|
|
|
|
// this
|
|
React.renderComponent(<div id="msg">Hello World!</div>, mountNode);
|
|
// is the same as this
|
|
React.renderComponent(React.DOM.div({id:"msg"}, "Hello World!"), mountNode);
|
|
";
|
|
React.renderComponent(
|
|
ReactPlayground( {codeText:CB_03-IF-ELSE-IN-JSX_COMPONENT} ),
|
|
document.getElementById("cb-03IfElseIn-JSXExample")
|
|
);
|