mirror of
https://github.com/reactjs/react.dev.git
synced 2026-02-25 23:05:23 +00:00
19 lines
429 B
JavaScript
19 lines
429 B
JavaScript
/**
|
|
* @jsx React.DOM
|
|
*/
|
|
|
|
var INLINE_STYLES_COMPONENT = "
|
|
/** @jsx React.DOM */
|
|
|
|
var divStyle = {
|
|
color: 'white',
|
|
backgroundImage: 'url(' + imgUrl + ')',
|
|
WebkitTransition: 'all' // note the capital 'W' here
|
|
};
|
|
|
|
React.renderComponent(<div style={divStyle}>Hello World!</div>, mountNode);
|
|
";
|
|
React.renderComponent(
|
|
ReactPlayground( {codeText:INLINE_STYLES_COMPONENT} ),
|
|
document.getElementById("inlineStylesExample")
|
|
); |