Concepts
- Overview
- Customize Layout
- Customize CSS
- Template Variables
- Conditional Templates
- Action Components
- Variants
General Wireframe Setup
Async Collaboration
- Comments
- In-app Notifications
- Inline Reactions
- Arrows
Huddle
Slots
import {
VeltHuddleTool
} from '@veltdev/react';
export default function App() {
return (
<>
<VeltHuddleTool>
<button slot="button">Huddle</button>
</VeltHuddleTool>
</>
);
}
1
Replace the Huddle Tool
Provide a template for the Huddle Tool.
Target the button
slot with your own custom template.
<VeltHuddleTool>
<button slot="button">Huddle</button>
</VeltCommentTool>
import {
VeltHuddleTool
} from '@veltdev/react';
export default function App() {
return (
<>
<VeltHuddleTool>
<button slot="button">Huddle</button>
</VeltHuddleTool>
</>
);
}
import {
VeltHuddleTool
} from '@veltdev/react';
export default function App() {
return (
<>
<VeltHuddleTool>
<button slot="button">Huddle</button>
</VeltHuddleTool>
</>
);
}