1
0
mirror of https://github.com/bobwen-dev/react-templates synced 2025-04-12 00:56:39 +02:00

12 lines
222 B
Plaintext

{
mixins: [React.addons.LinkedStateMixin],
getInitialState: function () {
return {
items: [
'One',
'Two',
'Three'
]
};
}
}