forked from Ivasoft/mattermost-mobile
* MM-15719 Use metadata only to render post additional content * Default link to empty instead of undefined * Feedback review
17 lines
428 B
JavaScript
17 lines
428 B
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import {connect} from 'react-redux';
|
|
|
|
import {getDimensions} from 'app/selectors/device';
|
|
|
|
import PostAttachmentOpenGraph from './post_attachment_opengraph';
|
|
|
|
function mapStateToProps(state) {
|
|
return {
|
|
...getDimensions(state),
|
|
};
|
|
}
|
|
|
|
export default connect(mapStateToProps)(PostAttachmentOpenGraph);
|