mattermost-mobile/app/components/markdown/markdown_image/index.js
2018-01-15 18:22:05 -03:00

16 lines
427 B
JavaScript

// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import {connect} from 'react-redux';
import {getCurrentUrl} from 'mattermost-redux/selectors/entities/general';
import MarkdownImage from './markdown_image';
function mapStateToProps(state) {
return {
serverURL: getCurrentUrl(state)
};
}
export default connect(mapStateToProps)(MarkdownImage);