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

function YourComponent() {

  return (
    <div className="toolbar">
      <VeltUserRequestTool />
    </div>
  )
  
}
  • React / Next.js

  • HTML

1

Import VeltUserRequestTool from @veltdev/react

Import the VeltUserRequestTool component.

import { VeltUserRequestTool } from '@veltdev/react';
2

Place the VeltUserRequestTool component

Place the component wherever you want the invite button to appear.

<div className="toolbar">
  <VeltUserRequestTool />
</div>