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?