Add TabComplete.Entry so we can render images AND text(!) - Add peek() option, all broken.

This commit is contained in:
Kegan Dougal 2015-12-21 14:34:25 +00:00
parent 400b5196bb
commit 41d4c1d14e
4 changed files with 45 additions and 18 deletions

View file

@ -22,9 +22,19 @@ var MatrixClientPeg = require("../../../MatrixClientPeg");
module.exports = React.createClass({
displayName: 'TabCompleteBar',
propTypes: {
entries: React.PropTypes.array.isRequired
},
render: function() {
return (
<div> Tab Complete </div>
<div>
{this.props.entries.map(function(entry, i) {
return (
<div key={i + ""}>{entry.text}</div>
);
})}
</div>
);
}
});