Skip to main content
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>

    </>
  );
}

<!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>