mattermost-mobile/app/screens/settings/notification_settings_mentions/index.js

16 lines
463 B
JavaScript

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