User Invites
<UserInvitePane/>

User Invite Pane UI Component

Introduction

The <UserInvitePane /> component renders a pane that allows to invite one or multiple users at once.

Image

See this component in action on Storybook (opens in a new tab).

Integration

ℹ️

Before you can use these UI Components, please do the basic setup.

You can integrate the <UserInvitePane/> component using this code:

import { UserInvitePane } from '@roq/ui-react';
 
function App() {
    return (
        <UserInvitePane
            onInviteError={function noRefCheck(){}}
            onInviteSuccess={function noRefCheck(){}}
        />
    );
}