Concepts
Async Collaboration
- Comments
- In-app Notifications
- Inline Reactions
- Arrows
Realtime Collaboration
- Presence
- Cursors
- Live Selection
- Huddle
Slots
import {
VeltRecorderTool
} from '@veltdev/react';
export default function App() {
return (
<>
<VeltRecorderTool>
<button slot="button">Recorder</button>
</VeltRecorderTool>
</>
);
}
1
Replace the Recorder Tool
Provide a template for the Recorder Tool.
Target the button
slot with your own custom template.
import {
VeltRecorderTool
} from '@veltdev/react';
export default function App() {
return (
<>
<VeltRecorderTool>
<button slot="button">Recorder</button>
</VeltRecorderTool>
</>
);
}
Was this page helpful?
import {
VeltRecorderTool
} from '@veltdev/react';
export default function App() {
return (
<>
<VeltRecorderTool>
<button slot="button">Recorder</button>
</VeltRecorderTool>
</>
);
}