User Invites
<UserInvitesTable/>

User Invites Table UI Component

Introduction

The <UserInvitesTable /> component renders all related components at once. Users can invite other users and manage their invitees in a table.

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.

<UserInvitesTable/>

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

import { NotificationModal } from '@roq/ui-react';
 
function App() {
    return (
        <UserInvitesTable />
    );
}