* Babel TS and Eslint config * Channel is archived component * Move Typing component * Move Uploads component * Add PostInput component * QuickActions components * Add PostDraft component * Remove old PostTextbox component * Rename post_textbox constant * Fix Autocomplete * Rename blur post draft event * Fix references * Feedback review * Fix autocomplete for iOS
16 lines
397 B
JavaScript
16 lines
397 B
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import {connect} from 'react-redux';
|
|
|
|
import {getUsersTyping} from '@mm-redux/selectors/entities/typing';
|
|
|
|
import Typing from './typing';
|
|
|
|
function mapStateToProps(state) {
|
|
return {
|
|
typing: getUsersTyping(state),
|
|
};
|
|
}
|
|
|
|
export default connect(mapStateToProps)(Typing);
|