2014-12-30 10:05:27 +01:00
|
|
|
var <%= name %> = React.createClass({
|
2014-12-07 14:13:35 +01:00
|
|
|
getInitialState: function () {
|
|
|
|
return {
|
2014-12-30 09:42:31 +01:00
|
|
|
items: ['One', 'Two', 'Three']
|
2014-12-07 14:13:35 +01:00
|
|
|
};
|
2014-12-30 09:42:31 +01:00
|
|
|
},
|
|
|
|
render: function () {
|
2014-12-30 10:05:27 +01:00
|
|
|
return <%= name %>RT.apply(this);
|
2014-12-07 14:13:35 +01:00
|
|
|
}
|
2014-12-30 09:42:31 +01:00
|
|
|
});
|