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 the Arrow components from @veltdev/react
Import the Arrow componentsimport { VeltArrows, VeltArrowTool } from '@veltdev/react';
Place the VeltArrows component
Place the VeltArrows component at the root of your app.<div>
<VeltArrows/>
</div>
Place the VeltArrowTool component
Place the VeltArrowsTool component wherever you want the invite button to appear.<div className="toolbar">
<VeltArrowTool />
</div>
Place the <velt-arrows> component
Place the <velt-arrows> component at the root of your app.<div>
<velt-arrows></velt-arrows>
</div>
Place the <velt-arrow-tool> component
Place the component wherever you want the invite button to appear.<div class="toolbar">
<velt-arrow-tool></velt-arrow-tool>
</div>
import { VeltArrows, VeltArrowTool } from '@veltdev/react';
function YourComponent() {
return (
<div>
<VeltArrows/>
<div className="toolbar">
<VeltArrowTool />
</div>
</div>
)
}