- React / Next.js
- Other Frameworks
1
Replace the Huddle Tool
Provide a template for the Huddle Tool.Target the
button slot with your own custom template.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
import {
VeltHuddleTool
} from '@veltdev/react';
export default function App() {
return (
<>
<VeltHuddleTool>
<button slot="button">Huddle</button>
</VeltHuddleTool>
</>
);
}
<!doctype html>
<html lang="en">
<head>
<title>Huddle documentation</title>
</head>
<body>
<velt-user-invite-tool>
<button slot="button">Huddle</button>
</velt-user-invite-tool>
</body>
</html>
Replace parts of the Velt Huddle Tool using named slots to inject custom HTML and components into the join button, participant list, and controls.
button slot with your own custom template.<VeltHuddleTool>
<button slot="button">Huddle</button>
</VeltCommentTool>
button slot with your own custom template.<velt-user-invite-tool>
<button slot="button">Huddle</button>
</velt-user-invite-tool>
import {
VeltHuddleTool
} from '@veltdev/react';
export default function App() {
return (
<>
<VeltHuddleTool>
<button slot="button">Huddle</button>
</VeltHuddleTool>
</>
);
}
<!doctype html>
<html lang="en">
<head>
<title>Huddle documentation</title>
</head>
<body>
<velt-user-invite-tool>
<button slot="button">Huddle</button>
</velt-user-invite-tool>
</body>
</html>
Was this page helpful?
