Files
mattermost/webapp/components/rhs_dropdown_menu.jsx
2016-11-14 19:35:34 -05:00

23 lines
565 B
JavaScript

// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import {Dropdown} from 'react-bootstrap';
import React from 'react';
export default class RhsDropdownMenu extends Dropdown.Menu {
constructor(props) { //eslint-disable-line no-useless-constructor
super(props);
}
render() {
return (
<div
className='dropdown-menu__content'
onClick={this.props.onClose}
>
{super.render()}
</div>
);
}
}