summaryrefslogtreecommitdiffstats
path: root/webapp/components/rhs_dropdown_button.jsx
blob: 3c325a431afbe755331344459b12aef302fdfc64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

import React, {PropTypes, 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}
            />
        );
    }
}