summaryrefslogtreecommitdiffstats
path: root/webapp/components/suggestion/suggestion.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/suggestion/suggestion.jsx')
-rw-r--r--webapp/components/suggestion/suggestion.jsx30
1 files changed, 0 insertions, 30 deletions
diff --git a/webapp/components/suggestion/suggestion.jsx b/webapp/components/suggestion/suggestion.jsx
deleted file mode 100644
index ddfdabc7d..000000000
--- a/webapp/components/suggestion/suggestion.jsx
+++ /dev/null
@@ -1,30 +0,0 @@
-import PropTypes from 'prop-types';
-
-// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import React from 'react';
-
-export default class Suggestion extends React.Component {
- static get propTypes() {
- return {
- item: PropTypes.object.isRequired,
- term: PropTypes.string.isRequired,
- matchedPretext: PropTypes.string.isRequired,
- isSelection: PropTypes.bool,
- onClick: PropTypes.func
- };
- }
-
- constructor(props) {
- super(props);
-
- this.handleClick = this.handleClick.bind(this);
- }
-
- handleClick(e) {
- e.preventDefault();
-
- this.props.onClick(this.props.term, this.props.matchedPretext);
- }
-}