Converts plain CSS into (optionally auto-prefixed) React-style properties map.
/** @jsx React.DOM */varReact=require("react");varfromCSS=require("react-css").fromCSS;/* Pre-compute the CSS to avoid lengthy calculations at each render cycle */varmyComponentStyle=fromCSS("{ opacity: 0.5; }");varMyComponent=React.createClass({render: function(){return(<divstyle={myComponentStyle}>
/* ... */
</div>);},});/* ... */