react-templates/playground/samples/rt-repeat.code

12 lines
222 B
Plaintext
Raw Normal View History

2014-12-07 14:13:35 +01:00
{
mixins: [React.addons.LinkedStateMixin],
getInitialState: function () {
return {
2014-12-28 10:47:34 +01:00
items: [
'One',
'Two',
'Three'
2014-12-07 14:13:35 +01:00
]
};
}
}