import { h } from 'preact';
import PropTypes from 'prop-types';
const InviteForm = ({
handleChatChannelInvitations,
invitationUsernames,
handleInvitationUsernames,
}) => {
return (
);
};
InviteForm.propTypes = {
handleInvitationUsernames: PropTypes.func.isRequired,
handleChatChannelInvitations: PropTypes.func.isRequired,
invitationUsernames: PropTypes.func.isRequired,
};
export default InviteForm;