0.0.2 • Published 10 years ago

react-css v0.0.2

Weekly downloads
234
License
MIT
Repository
github
Last release
10 years ago

react-css

Converts plain CSS into (optionally auto-prefixed) React-style properties map.

Usage

/** @jsx React.DOM */
var React = require("react");
var fromCSS = require("react-css").fromCSS;

/* Pre-compute the CSS to avoid lengthy calculations at each render cycle */
var myComponentStyle = fromCSS("{ opacity: 0.5; }");

var MyComponent = React.createClass({
	render: function() {
		return (
			<div style={myComponentStyle}>
				/* ... */
			</div>
		);
	},
});
/* ... */