From d8bd57901e33a7057e26e782e295099ffcc0da89 Mon Sep 17 00:00:00 2001 From: Christopher Speller Date: Wed, 6 Sep 2017 23:04:13 -0700 Subject: Removing webapp --- webapp/components/suggestion/suggestion.jsx | 30 ----------------------------- 1 file changed, 30 deletions(-) delete mode 100644 webapp/components/suggestion/suggestion.jsx (limited to 'webapp/components/suggestion/suggestion.jsx') 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); - } -} -- cgit v1.2.3-1-g7c22