Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.velt.dev/llms.txt

Use this file to discover all available pages before exploring further.

1

Import the VeltViewAnalytics component from @veltdev/react

Import the VeltViewAnalytics component
import { VeltViewAnalytics } from '@veltdev/react';
2

Place the VeltViewAnalytics component

Place the VeltViewAnalytics component wherever you want the View Analytics component to appear.
<div className="toolbar">
  <VeltViewAnalytics />
</div>
import { VeltViewAnalytics } from '@veltdev/react';

function YourComponent() {

  return (
    <div className="toolbar">
      <VeltViewAnalytics />
    </div>
  )
  
}