npm install lineman-reactCompiles JSX files in your Lineman app. Uses grunt-react under the hood.
``bash`
$ npm install lineman-react --save
This will compile all of the JSX files in app/js//.jsx to generated/jsx//.js, and then include them in the generated app.js file. This does generate and concatenate sourcemaps for the compiled JSX files onto app.js.map.
You will need to include the JSX directive at the top of each JSX file.
`javascript
/* @jsx React.DOM /
window.app.components.MyComponent = React.createClass({
render: function(){
return
A react component!
;});
``