This commit is contained in:
David Baker 2015-06-19 14:01:17 +01:00
parent 2abea931ca
commit 1270bc3c62
5 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,17 @@
var React = require('react');
var MNoticeTileController = require("../../controllers/molecules/MNoticeTile");
module.exports = React.createClass({
mixins: [MNoticeTileController],
render: function() {
var content = this.props.mxEvent.getContent();
return (
<span className="mx_MNoticeTile">
{content.body}
</span>
);
},
});