Add not-working-yet text box, plus a bit more css

This commit is contained in:
David Baker 2015-06-15 18:35:28 +01:00
parent 56415b40e9
commit a0c5fb4a8b
3 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,16 @@
var React = require('react');
var MatrixClientPeg = require("../MatrixClientPeg");
module.exports = React.createClass({
render: function() {
return (
<div className="mx_MessageComposer">
<form>
<textarea />
</form>
</div>
);
},
});