Converting to Webpack. Stage 1.

Этот коммит содержится в:
Christopher Speller
2016-03-14 08:50:46 -04:00
родитель 29fe6a3d13
Коммит 12896bd23e
4950 изменённых файлов: 10935 добавлений и 1604875 удалений

28
webapp/components/message_wrapper.jsx Обычный файл
Просмотреть файл

@@ -0,0 +1,28 @@
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import * as TextFormatting from 'utils/text_formatting.jsx';
import React from 'react';
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
};