Documentation Index
Fetch the complete documentation index at: https://docs.velt.dev/llms.txt
Use this file to discover all available pages before exploring further.
React / Next.js
Other Frameworks
Import VeltUserRequestTool from @veltdev/react
Import the VeltUserRequestTool component.import { VeltUserRequestTool } from '@veltdev/react';
Place the VeltUserRequestTool component
Place the component wherever you want the invite button to appear.<div className="toolbar">
<VeltUserRequestTool />
</div>
Place the <velt-user-request-tool> component
Place the component wherever you want the invite button to appear.<div class="toolbar">
<velt-user-request-tool></velt-user-request-tool>
</div>
import { VeltUserRequestTool } from '@veltdev/react';
function YourComponent() {
return (
<div className="toolbar">
<VeltUserRequestTool />
</div>
)
}