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.
14 lines
372 B
14 lines
372 B
/**
|
|
* @jsx React.DOM
|
|
*/
|
|
|
|
var STYLE_PROP_VALUE_PX_TIP_COMPONENT = "
|
|
/** @jsx React.DOM */
|
|
|
|
var divStyle = {height: 10}; // rendered as "height:10px"
|
|
React.renderComponent(<div style={divStyle}>Hello World!</div>, mountNode);
|
|
";
|
|
React.renderComponent(
|
|
ReactPlayground( {codeText:STYLE_PROP_VALUE_PX_TIP_COMPONENT} ),
|
|
document.getElementById("StylePropValuePx tip")
|
|
);
|