This repository has been archived on 2022-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
hydrogen-web/src/domain/session/room/timeline/tiles/TextTile.js

9 lines
206 B
JavaScript
Raw Normal View History

2019-03-09 05:10:03 +05:30
import MessageTile from "./MessageTile.js";
export default class TextTile extends MessageTile {
get text() {
const content = this._getContent();
return content && content.body;
}
}