mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
4cfd8c6204
It's referencing packages that aren't published yet but it *probably* works...
10 lines
161 B
JavaScript
10 lines
161 B
JavaScript
var React = require('react');
|
|
|
|
var App = React.createClass({
|
|
render: function() {
|
|
return <h1>Hello {this.props.name}!</h1>;
|
|
}
|
|
});
|
|
|
|
module.exports = App;
|