Skip to content

Commit fc11fec

Browse files
committed
Optimized example by caching out the conversion result, thanks @vjeux.
1 parent d849f75 commit fc11fec

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,13 @@ Usage
99
var React = require("react");
1010
var fromCSS = require("react-css").fromCSS;
1111

12+
/* Pre-compute the CSS to avoid lengthy calculations at each render cycle */
13+
var myComponentStyle = fromCSS("{ opacity: 0.5; }");
14+
1215
var MyComponent = React.createClass({
1316
render: function() {
1417
return (
15-
<div style={fromCSS("{ opacity: 0.5; }")}>
18+
<div style={myComponentStyle}>
1619
/* ... */
1720
</div>
1821
);

0 commit comments

Comments
 (0)