summaryrefslogtreecommitdiffstats
path: root/webapp/components/rhs_dropdown_button.jsx
diff options
context:
space:
mode:
authorSaturnino Abril <saturnino.abril@gmail.com>2017-06-15 07:45:46 +0800
committerJoram Wilander <jwawilander@gmail.com>2017-06-14 19:45:46 -0400
commit0e89d9be1d6a2a1ca470f9ca92e0d59e5945ca18 (patch)
tree2fbfd8bc9f30e6ac84bcb14cc8c4c0a5e566be24 /webapp/components/rhs_dropdown_button.jsx
parent5b017171cd42872a11a9c8b3e2e8bb9bd29c2b3a (diff)
downloadchat-0e89d9be1d6a2a1ca470f9ca92e0d59e5945ca18.tar.gz
chat-0e89d9be1d6a2a1ca470f9ca92e0d59e5945ca18.tar.bz2
chat-0e89d9be1d6a2a1ca470f9ca92e0d59e5945ca18.zip
create DotMenu components and add dotmenu IDs to posts at center and RHS (#6642)
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}
- />
- );
- }
-}