summaryrefslogtreecommitdiffstats
path: root/webapp/components/message_wrapper.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/message_wrapper.jsx')
-rw-r--r--webapp/components/message_wrapper.jsx42
1 files changed, 0 insertions, 42 deletions
diff --git a/webapp/components/message_wrapper.jsx b/webapp/components/message_wrapper.jsx
deleted file mode 100644
index 22f409783..000000000
--- a/webapp/components/message_wrapper.jsx
+++ /dev/null
@@ -1,42 +0,0 @@
-// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import * as TextFormatting from 'utils/text_formatting.jsx';
-import * as Utils from 'utils/utils.jsx';
-import {getSiteURL} from 'utils/url.jsx';
-
-import PropTypes from 'prop-types';
-
-import React from 'react';
-
-export default class MessageWrapper extends React.Component {
- constructor(props) {
- super(props);
- this.state = {};
- }
-
- render() {
- if (this.props.message) {
- const options = Object.assign({}, this.props.options, {
- siteURL: getSiteURL()
- });
-
- return (
- <div
- onClick={Utils.handleFormattedTextClick}
- dangerouslySetInnerHTML={{__html: TextFormatting.formatText(this.props.message, options)}}
- />
- );
- }
-
- return <div/>;
- }
-}
-
-MessageWrapper.defaultProps = {
- message: ''
-};
-MessageWrapper.propTypes = {
- message: PropTypes.string,
- options: PropTypes.object
-};