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