import React from 'react'; import PropTypes from 'prop-types'; import MediaQuery from 'react-responsive'; import CommonToolbar from './common-toolbar'; import { Button } from 'reactstrap'; import { gettext } from '../../utils/constants'; const propTypes = { onShowSidePanel: PropTypes.func.isRequired, onSearchedClick: PropTypes.func.isRequired, toggleInvitePeopleDialog: PropTypes.func.isRequired, }; class InvitationsToolbar extends React.Component { constructor(props) { super(props); } render() { let { onShowSidePanel, onSearchedClick, toggleInvitePeopleDialog } = this.props; return (
{window.innerWidth >= 768 ? (
) : ( )}
); } } InvitationsToolbar.propTypes = propTypes; export default InvitationsToolbar;