summaryrefslogtreecommitdiffstats
path: root/webapp/components/rhs_dropdown_button.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/rhs_dropdown_button.jsx')
-rw-r--r--webapp/components/rhs_dropdown_button.jsx22
1 files changed, 0 insertions, 22 deletions
diff --git a/webapp/components/rhs_dropdown_button.jsx b/webapp/components/rhs_dropdown_button.jsx
deleted file mode 100644
index ac7563994..000000000
--- a/webapp/components/rhs_dropdown_button.jsx
+++ /dev/null
@@ -1,22 +0,0 @@
-import PropTypes from 'prop-types';
-
-// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import React, {PureComponent} from 'react';
-
-export default class RhsDropdownButton extends PureComponent {
- static propTypes = {
- onClick: PropTypes.func.isRequired
- }
-
- render() {
- return (
- <a
- href='#'
- className='post__dropdown dropdown-toggle'
- onClick={this.props.onClick}
- />
- );
- }
-}