import {
  VeltUserInviteTool
} from '@veltdev/react';

export default function App() {

  return (
    <>

      <VeltUserInviteTool>
        <button slot="button">User Invite</button>
      </VeltUserInviteTool>

    </>
  );
}
1

Replace the User Invite Tool

Provide a template for the User Invite Tool.

Target the button slot with your own custom template.

<VeltUserInviteTool>
  <button slot="button">User Invite</button>
</VeltCommentTool>
import {
  VeltUserInviteTool
} from '@veltdev/react';

export default function App() {

  return (
    <>

      <VeltUserInviteTool>
        <button slot="button">User Invite</button>
      </VeltUserInviteTool>

    </>
  );
}

Was this page helpful?