| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 2× 2× 2× 2× 2× 128× 2× | var BindStoreMixin, CurrentUserStore, React, UserName;
React = require('react');
BindStoreMixin = require('../bind-store-mixin');
CurrentUserStore = require('../../flux/current-user').CurrentUserStore;
UserName = React.createClass({
displayName: 'UserName',
render: function() {
return React.createElement("span", React.__spread({}, this.props), CurrentUserStore.getName());
}
});
module.exports = UserName;
|