Display the room list
This commit is contained in:
parent
5f970edac5
commit
971a7c1133
6 changed files with 81 additions and 9 deletions
11
src/molecules/RoomTile.js
Normal file
11
src/molecules/RoomTile.js
Normal file
|
@ -0,0 +1,11 @@
|
|||
var React = require('react');
|
||||
|
||||
module.exports = React.createClass({
|
||||
render: function() {
|
||||
return (
|
||||
<div className="mx_RoomTile">
|
||||
<div className="mx_RoomTile_name">{this.props.room.name}</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue