summaryrefslogtreecommitdiffstats
path: root/webapp/components/at_mention/index.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/at_mention/index.jsx')
-rw-r--r--webapp/components/at_mention/index.jsx17
1 files changed, 0 insertions, 17 deletions
diff --git a/webapp/components/at_mention/index.jsx b/webapp/components/at_mention/index.jsx
deleted file mode 100644
index 37c886bbd..000000000
--- a/webapp/components/at_mention/index.jsx
+++ /dev/null
@@ -1,17 +0,0 @@
-// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import {connect} from 'react-redux';
-
-import {getUsersByUsername} from 'mattermost-redux/selectors/entities/users';
-
-import AtMention from './at_mention.jsx';
-
-function mapStateToProps(state, ownProps) {
- return {
- ...ownProps,
- usersByUsername: getUsersByUsername(state)
- };
-}
-
-export default connect(mapStateToProps)(AtMention);