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