Files
mattermost/web/react/components/message_wrapper.jsx
2015-09-02 08:30:23 -07:00

31 lines
709 B
JavaScript

// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved.
// See License.txt for license information.
var Utils = require('../utils/utils.jsx');
export default class MessageWrapper extends React.Component {
constructor(props) {
super(props);
this.state = {};
}
render() {
if (this.props.message) {
var inner = Utils.textToJsx(this.props.message, this.props.options);
return (
<div>{inner}</div>
);
}
return <div/>;
}
}
MessageWrapper.defaultProps = {
message: null,
options: null
};
MessageWrapper.propTypes = {
message: React.PropTypes.string,
options: React.PropTypes.object
};