mirror of
https://github.com/bobwen-dev/react-templates
synced 2025-04-12 00:56:39 +02:00
10 lines
228 B
Plaintext
10 lines
228 B
Plaintext
var <%= name %> = React.createClass({
|
|
getInitialState: function () {
|
|
return {
|
|
items: ['One', 'Two', 'Three']
|
|
};
|
|
},
|
|
render: function () {
|
|
return <%= name %>RT.apply(this);
|
|
}
|
|
}); |