mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
27 lines
687 B
JavaScript
27 lines
687 B
JavaScript
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import * as TextFormatting from '../utils/text_formatting.jsx';
|
|
|
|
export default class MessageWrapper extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
this.state = {};
|
|
}
|
|
render() {
|
|
if (this.props.message) {
|
|
return <div dangerouslySetInnerHTML={{__html: TextFormatting.formatText(this.props.message, this.props.options)}}/>;
|
|
}
|
|
|
|
return <div/>;
|
|
}
|
|
}
|
|
|
|
MessageWrapper.defaultProps = {
|
|
message: ''
|
|
};
|
|
MessageWrapper.propTypes = {
|
|
message: React.PropTypes.string,
|
|
options: React.PropTypes.object
|
|
};
|