Documentation Index
Fetch the complete documentation index at: https://docs.velt.dev/docs/llms.txt
Use this file to discover all available pages before exploring further.
React / Next.js
Other Frameworks
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>
Replace the User Invite Tool
Provide a template for the User Invite Tool.Target the button slot with your own custom template.<velt-user-invite-tool>
<button slot="button">User Invite</button>
</velt-user-invite-tool>
import {
VeltUserInviteTool
} from '@veltdev/react';
export default function App() {
return (
<>
<VeltUserInviteTool>
<button slot="button">User Invite</button>
</VeltUserInviteTool>
</>
);
}