Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/thibauts/react-starter


https://github.com/thibauts/react-starter

Last synced: 21 days ago
JSON representation

Awesome Lists containing this project

README

        

react-starter
=============

Version browserify
------------------

Installation :
```bash
npm install
npm install -g watchify
```

Lancement du watch :
```bash
npm run watch
```

Lancement du serveur :
```bash
npm run server
```

Version statique
----------------

```html


React Starter



/** @jsx React.DOM */

var HelloComponent = React.createClass({
render: function() {
return (
<div>Hello, {this.props.name} !</div>
);
}
});

React.renderComponent(
<HelloComponent name="React" />,
document.getElementById('app')
);

```